(text: string)
| 7 | |
| 8 | const ANSI_SGR = /\[[0-9;]*m/g; |
| 9 | function strip(text: string): string { |
| 10 | return text.replaceAll(ANSI_SGR, ''); |
| 11 | } |
| 12 | |
| 13 | function fakeTerminal(rows: number, columns = 120): Terminal { |
| 14 | return { |
no outgoing calls
no test coverage detected