(stream: NodeJS.WriteStream = process.stdout)
| 17 | * unless `NG_FORCE_TTY` is set. |
| 18 | */ |
| 19 | export function isTTY(stream: NodeJS.WriteStream = process.stdout): boolean { |
| 20 | return forceTty ?? (!!stream.isTTY && !isCI); |
| 21 | } |
no outgoing calls
no test coverage detected