mirror of
https://github.com/stablyai/orca.git
synced 2026-09-27 16:02:35 +00:00
4 lines
142 B
TypeScript
4 lines
142 B
TypeScript
export function escapeInjectedJavaScriptString(value: string): string {
|
|
return JSON.stringify(value).replace(/<\/script/gi, '<\\/script')
|
|
}
|