1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-17 23:32:56 +09:00
hotomoe/src/misc/safe-for-sql.ts
2020-02-20 13:33:41 +09:00

4 lines
105 B
TypeScript

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