(p: string)
| 19 | }) |
| 20 | |
| 21 | const exists = (p: string): Promise<boolean> => |
| 22 | access(p) |
| 23 | .then(() => true) |
| 24 | .catch(() => false) |
| 25 | |
| 26 | // A minimal legacy database: loose `<Name>.csv` + co-located sidecar, with one |
| 27 | // record-page note under the per-database `<Name>/` folder. |
no outgoing calls
no test coverage detected