0
1
mirror of https://github.com/actions/checkout synced 2024-06-02 18:48:04 +02:00
checkout/src/regexp-helper.ts
2020-03-05 14:21:59 -05:00

6 lines
123 B
TypeScript

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