(bin: string)
| 35 | * resolution on Windows. |
| 36 | */ |
| 37 | export function needsWinShell(bin: string): boolean { |
| 38 | if (process.platform !== 'win32') return false; |
| 39 | return !path.win32.isAbsolute(bin); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Prepare command and args for spawn(), handling Windows paths with spaces. |
no outgoing calls
no test coverage detected