mirror of
https://gitea.com/actions/checkout
synced 2026-01-11 21:32:06 +00:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
export function escape(value: string): string {
|
|
return value.replace(/[^a-zA-Z0-9_]/g, x => {
|
|
return `\\${x}`
|
|
})
|
|
}
|