(relPath: string)
| 259 | |
| 260 | /** True for the sidecar file path (`*.csv.base.json`). */ |
| 261 | export function isDatabaseSidecarPath(relPath: string): boolean { |
| 262 | return relPath.toLowerCase().endsWith(`.csv${DATABASE_SIDECAR_SUFFIX}`) |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * True for files that belong to a database but aren't the user-facing entity. |
no outgoing calls
no test coverage detected