1
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2024-10-17 06:34:40 +02:00
checkout/src/regexp-helper.ts

6 lines
123 B
TypeScript
Raw Normal View History

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