(value: string)
| 296 | } |
| 297 | |
| 298 | function hasAnsi(value: string): boolean { |
| 299 | return value.includes(ANSI_ESCAPE_PREFIX); |
| 300 | } |
| 301 | |
| 302 | function sliceVisibleColumns(value: string, columns: number): string { |
| 303 | if (columns <= 0) return ''; |
no outgoing calls
no test coverage detected
searching dependent graphs…