()
| 25 | } |
| 26 | |
| 27 | function ensureSessionDir(): void { |
| 28 | if (!fs.existsSync(SESSION_DIR)) { |
| 29 | fs.mkdirSync(SESSION_DIR, { recursive: true }); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | function readSessionFile(filePath: string): SessionFile | null { |
| 34 | try { |
no outgoing calls
no test coverage detected