1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-18 07:42:56 +09:00
hotomoe/src/misc/safe-for-sql.ts
2020-02-20 07:18:16 +09:00

4 lines
104 B
TypeScript

export function safeForSql(text: string): boolean {
return /[\0\x08\x09\x1a\n\r"'\\\%]/g.test(text);
}