(value: string)
| 10 | const isMac = os.platform() === 'darwin' |
| 11 | |
| 12 | const escapeForShell = (value: string): string => |
| 13 | `'${value.replace(/'/g, `'\\''`)}'` |
| 14 | |
| 15 | const escapeForCmd = (value: string): string => |
| 16 | `"${value.replace(/"/g, '""')}"` |
no outgoing calls
no test coverage detected