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