1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-09 19:34:00 +09:00
cherrypick/src/misc/safe-for-sql.ts

4 lines
104 B
TypeScript
Raw Normal View History

2020-02-20 07:18:16 +09:00
export function safeForSql(text: string): boolean {
return /[\0\x08\x09\x1a\n\r"'\\\%]/g.test(text);
}