(root: string, abs: string)
| 23 | } |
| 24 | |
| 25 | function relativeVaultPath(root: string, abs: string): string { |
| 26 | return toPosix(path.relative(root, abs)) |
| 27 | } |
| 28 | |
| 29 | function isVaultSettingsPath(root: string, abs: string): boolean { |
| 30 | return relativeVaultPath(root, abs) === VAULT_SETTINGS_RELATIVE_PATH |
no test coverage detected