mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 03:53:08 +02:00
Better validation
This commit is contained in:
parent
330ea7d210
commit
2504b8391b
1 changed files with 1 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
export function safeForSql(text: string): boolean {
|
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 a new issue