sharkey/packages/backend/src/misc/safe-for-sql.ts

9 lines
220 B
TypeScript
Raw Normal View History

/*
* 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
}