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