()
| 36 | const HAS_SQLITE = hasSqliteBindings(); |
| 37 | |
| 38 | function tmpRoot(): string { |
| 39 | return fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-symbol-lookup-')); |
| 40 | } |
| 41 | |
| 42 | function rmTree(dir: string): void { |
| 43 | if (fs.existsSync(dir)) fs.rmSync(dir, { recursive: true, force: true }); |
no test coverage detected