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