(value: string)
| 382 | } |
| 383 | |
| 384 | export function shellEscape(value: string) { |
| 385 | return `'${value.replace(/'/g, `'"'"'`)}'` |
| 386 | } |
| 387 | |
| 388 | function resolveSystem32Command(command: string) { |
| 389 | const root = process.env.SystemRoot ?? process.env.windir |
no outgoing calls
no test coverage detected