mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
3 lines
104 B
TypeScript
3 lines
104 B
TypeScript
export function sqlRegexEscape(s: string) {
|
|
return s.replace(/([!$()*+.:<=>?[\\\]^{|}-])/g, "\\$1");
|
|
}
|