mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-20 01:28:52 +09:00
4 lines
83 B
TypeScript
4 lines
83 B
TypeScript
|
export function sqlLikeEscape(s: string) {
|
||
|
return s.replace(/([%_])/g, '\\$1');
|
||
|
}
|