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