(err: unknown)
| 145 | } |
| 146 | |
| 147 | function handleSubProcessError(err: unknown) { |
| 148 | if (err instanceof Error && 'status' in err && typeof err.status === 'number') { |
| 149 | process.exit(err.status); |
| 150 | } else { |
| 151 | process.exit(1); |
| 152 | } |
| 153 | } |
no outgoing calls
no test coverage detected