(value: string)
| 452 | } |
| 453 | |
| 454 | function appleScriptEscape(value: string): string { |
| 455 | return value.replace(/\\/g, '\\\\').replace(/"/g, '\\"') |
| 456 | } |
| 457 | |
| 458 | /* ---------- Uninstall ------------------------------------------------- */ |
| 459 |
no outgoing calls
no test coverage detected