blob: ac4b8e2e2eccbcf6d5c1909d6ae781ca54aaed2d (
plain)
1
2
3
4
5
6
7
8
|
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export function safeForSql(text: string): boolean {
return !/[\0\x08\x09\x1a\n\r"'\\\%]/g.test(text);
}
|