(proc: ChildProcess | ParentProcess)
| 379 | : new ParentProcess(require("../../package.json").version) |
| 380 | |
| 381 | export function isChild(proc: ChildProcess | ParentProcess): proc is ChildProcess { |
| 382 | return proc instanceof ChildProcess |
| 383 | } |
| 384 | |
| 385 | // It's possible that the pipe has closed (for example if you run code-server |
| 386 | // --version | head -1). Assume that means we're done. |
no outgoing calls
no test coverage detected