mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 02:17:40 -07:00
3 lines
83 B
TypeScript
3 lines
83 B
TypeScript
export function sqlLikeEscape(s: string) {
|
|
return s.replace(/([%_])/g, "\\$1");
|
|
}
|