blob: 85cc7405e1bc4ba87b8b24d60e7e28c74a421d98 (
plain)
1
2
3
4
5
6
7
8
|
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export function sqlLikeEscape(s: string) {
return s.replace(/([%_])/g, '\\$1');
}
|