(proc)
| 11 | * serving on the original port. |
| 12 | */ |
| 13 | export function isProcessRunning(proc) { |
| 14 | return proc.exitCode === null && proc.signalCode === null; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Add spawn options needed for process-tree cleanup. |
no outgoing calls
no test coverage detected