(s: string)
| 37 | const dim = (s: string): string => wrap('\x1b[2m', s) |
| 38 | const italic = (s: string): string => wrap('\x1b[3m', s) |
| 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 |
no test coverage detected