(s: string)
| 39 | const cyan = (s: string): string => wrap('\x1b[36m', s) |
| 40 | const yellow = (s: string): string => wrap('\x1b[33m', s) |
| 41 | const magenta = (s: string): string => wrap('\x1b[35m', s) |
| 42 | |
| 43 | function termWidth(): number { |
| 44 | const cols = process.stdout.columns ?? TERMINAL_COLUMNS_FALLBACK |
no test coverage detected