(index: number)
| 11 | } from './screen.js' |
| 12 | |
| 13 | function style(index: number): AnsiCode { |
| 14 | return { |
| 15 | code: `\x1b[38;5;${index % 256}m-${index}`, |
| 16 | endCode: '\x1b[39m', |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | function visibleSpaceStyle(index: number): AnsiCode { |
| 21 | return { |
no outgoing calls
no test coverage detected