()
| 5 | |
| 6 | export const unicode = isUnicodeSupported(); |
| 7 | export const isCI = (): boolean => process.env.CI === 'true'; |
| 8 | export const isTTY = (output: Writable): boolean => { |
| 9 | return (output as Writable & { isTTY?: boolean }).isTTY === true; |
| 10 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected