0
1
Fork 0
checkout/src/regexp-helper.ts

6 lines
123 B
TypeScript

export function escape(value: string): string {
return value.replace(/[^a-zA-Z0-9_]/g, x => {
return `\\${x}`
})
}