(c, text)
| 51 | const C_CYAN = USE_COLOR ? '\x1b[36m' : ''; |
| 52 | |
| 53 | function color(c, text) { |
| 54 | return USE_COLOR ? c + text + C_RESET : text; |
| 55 | } |
| 56 | |
| 57 | function visibleLength(s) { |
| 58 | return s.replace(ANSI_ESCAPE, '').length; |
no outgoing calls
no test coverage detected