2
0
mirror of https://github.com/RouxAntoine/checkout.git synced 2025-01-04 00:45:14 +00:00
checkout/src/regexp-helper.ts

6 lines
123 B
TypeScript
Raw Normal View History

2020-03-05 19:21:59 +00:00
export function escape(value: string): string {
return value.replace(/[^a-zA-Z0-9_]/g, x => {
return `\\${x}`
})
}