(path: string)
| 14 | * absolute path for `file:` URLs; `:memory:` passes through unchanged. |
| 15 | */ |
| 16 | const toLibsqlFileUrl = (path: string): string => |
| 17 | path === ":memory:" ? path : `file:${resolve(path)}`; |
| 18 | |
| 19 | /** |
| 20 | * Open a libSQL client for a local on-disk DB and apply the per-connection |
no test coverage detected