(text: string)
| 11 | |
| 12 | const ANSI_SGR = /\[[0-9;]*m/g; |
| 13 | function strip(text: string): string { |
| 14 | return text.replaceAll(ANSI_SGR, ''); |
| 15 | } |
| 16 | |
| 17 | /** Minimal Terminal stub — only `rows` is read by the component. */ |
| 18 | function fakeTerminal(rows: number, columns = 120): Terminal { |