(settings: VaultSettings)
| 863 | } |
| 864 | |
| 865 | function currentDailyNotePattern(settings: VaultSettings): DateNotePatternSettings { |
| 866 | return { |
| 867 | directory: settings.dailyNotes.directory, |
| 868 | titlePattern: settings.dailyNotes.titlePattern ?? DEFAULT_DAILY_NOTE_TITLE_PATTERN, |
| 869 | locale: settings.dailyNotes.locale ?? DEFAULT_DAILY_NOTE_LOCALE |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | function currentWeeklyNotePattern(settings: VaultSettings): DateNotePatternSettings { |
| 874 | return { |
no outgoing calls
no test coverage detected