(error: unknown)
| 440 | } |
| 441 | |
| 442 | function errorMessage(error: unknown): string { |
| 443 | return error instanceof Error ? error.message : String(error) |
| 444 | } |
| 445 | |
| 446 | function isTtyInput(input: NodeJS.ReadableStream): boolean { |
| 447 | return Boolean((input as NodeJS.ReadStream).isTTY) |
no outgoing calls
no test coverage detected