()
| 2 | import spawn from 'cross-spawn'; |
| 3 | |
| 4 | export const isWindows = (): boolean => process.platform === 'win32'; |
| 5 | |
| 6 | export function isProcessAlive(pid: number): boolean { |
| 7 | if (!Number.isFinite(pid) || pid <= 0) { |
no outgoing calls
no test coverage detected