(row: number, col: number)
| 155 | |
| 156 | /** Move cursor to row, col (1-indexed) (CSI row ; col H) */ |
| 157 | export function cursorPosition(row: number, col: number): string { |
| 158 | return csi(row, col, 'H') |
| 159 | } |
| 160 | |
| 161 | /** Move cursor to home position (CSI H) */ |
| 162 | export const CURSOR_HOME = csi('H') |
no test coverage detected