()
| 12 | const nativeBinding = path.resolve('apps/cli/native/better_sqlite3.node') |
| 13 | |
| 14 | function makeTempDir(): string { |
| 15 | const baseDir = fs.existsSync('/private/tmp') ? '/private/tmp' : os.tmpdir() |
| 16 | return fs.mkdtempSync(path.join(baseDir, 'chatlab-db-manager-')) |
| 17 | } |
| 18 | |
| 19 | function createPathProvider(root: string): PathProvider { |
| 20 | return { |
no outgoing calls
no test coverage detected