Better validation
This commit is contained in:
parent
330ea7d210
commit
2504b8391b
@ -1,3 +1,3 @@
|
||||
export function safeForSql(text: string): boolean {
|
||||
return /[\0\x08\x09\x1a\n\r"'\\\%]/g.test(text);
|
||||
return !/[\0\x08\x09\x1a\n\r"'\\\%]/g.test(text);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user