jormungandr-bite/src/misc/safe-for-sql.ts

4 lines
105 B
TypeScript
Raw Normal View History

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