(value: string)
| 448 | } |
| 449 | |
| 450 | function shellQuote(value: string): string { |
| 451 | return `'${value.replace(/'/g, `'\\''`)}'` |
| 452 | } |
| 453 | |
| 454 | function appleScriptEscape(value: string): string { |
| 455 | return value.replace(/\\/g, '\\\\').replace(/"/g, '\\"') |
no outgoing calls
no test coverage detected