( settings: VaultSettings | null | undefined )
| 783 | } |
| 784 | |
| 785 | export function isPrimaryNotesAtRoot( |
| 786 | settings: VaultSettings | null | undefined |
| 787 | ): boolean { |
| 788 | return normalizeVaultSettings(settings).primaryNotesLocation === 'root' |
| 789 | } |
| 790 | |
| 791 | export function notePathWithinFolder( |
| 792 | path: string, |
no test coverage detected