(filePath: string)
| 84 | |
| 85 | /** Ensure the parent directory for a session file exists before writing. */ |
| 86 | export function ensureParentDir(filePath: string): void { |
| 87 | fs.mkdirSync(path.dirname(filePath), { recursive: true }); |
| 88 | } |
no outgoing calls
no test coverage detected