(homeDir: string)
| 4 | import { join } from 'node:path'; |
| 5 | |
| 6 | function sessionIndexPathLocal(homeDir: string): string { |
| 7 | return join(homeDir, 'session_index.jsonl'); |
| 8 | } |
| 9 | async function readIndexLocal(homeDir: string): Promise<Map<string, any>> { |
| 10 | try { |
| 11 | const raw = await readFile(sessionIndexPathLocal(homeDir), 'utf-8'); |
no outgoing calls
no test coverage detected