2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-02-19 23:18:16 +01:00
|
|
|
export function safeForSql(text: string): boolean {
|
2020-02-20 05:33:41 +01:00
|
|
|
return !/[\0\x08\x09\x1a\n\r"'\\\%]/g.test(text);
|
2020-02-19 23:18:16 +01:00
|
|
|
}
|