(col: number)
| 147 | |
| 148 | /** Move cursor to column n (1-indexed) (CSI n G) */ |
| 149 | export function cursorTo(col: number): string { |
| 150 | return csi(col, 'G') |
| 151 | } |
| 152 | |
| 153 | /** Move cursor to column 1 (CSI G) */ |
| 154 | export const CURSOR_LEFT = csi('G') |
no test coverage detected