(value: string | undefined)
| 60 | } |
| 61 | |
| 62 | export function getParentPollMs(value: string | undefined): number { |
| 63 | return Math.max(MIN_PARENT_POLL_MS, toIntegerOr(value, DEFAULT_PARENT_POLL_MS)); |
| 64 | } |
| 65 | |
| 66 | export function isProcessAlive(pid: number, killCheck: (pid: number, signal: number) => void = process.kill): boolean { |
| 67 | if (!Number.isFinite(pid) || pid <= 0) return false; |