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