()
| 30 | } |
| 31 | |
| 32 | function loadCursor(): string { |
| 33 | const path = cursorPath() |
| 34 | if (existsSync(path)) return readFileSync(path, 'utf-8').trim() |
| 35 | return '' |
| 36 | } |
| 37 | |
| 38 | function saveCursor(cursor: string): void { |
| 39 | writeFileSync(cursorPath(), cursor, 'utf-8') |
no test coverage detected