(tokens_0: Token[] | undefined)
| 87 | |
| 88 | // Get plain text (stripped of ANSI codes) |
| 89 | function getPlainText(tokens_0: Token[] | undefined): string { |
| 90 | return stripAnsi(formatCell(tokens_0)); |
| 91 | } |
| 92 | |
| 93 | // Get the longest word width in a cell (minimum width to avoid breaking words) |
| 94 | function getMinWidth(tokens_1: Token[] | undefined): number { |
no test coverage detected