mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 14:21:57 +01:00
4 lines
83 B
TypeScript
4 lines
83 B
TypeScript
|
export function sqlLikeEscape(s: string) {
|
||
|
return s.replace(/([%_])/g, '\\$1');
|
||
|
}
|