()
| 213 | |
| 214 | /** Erase from cursor to end of screen (CSI J) */ |
| 215 | export function eraseToEndOfScreen(): string { |
| 216 | return csi('J') |
| 217 | } |
| 218 | |
| 219 | /** Erase from cursor to start of screen (CSI 1 J) */ |
| 220 | export function eraseToStartOfScreen(): string { |
no test coverage detected