(settings: VaultSettings)
| 871 | } |
| 872 | |
| 873 | function currentWeeklyNotePattern(settings: VaultSettings): DateNotePatternSettings { |
| 874 | return { |
| 875 | directory: settings.weeklyNotes.directory, |
| 876 | titlePattern: settings.weeklyNotes.titlePattern ?? DEFAULT_WEEKLY_NOTE_TITLE_PATTERN, |
| 877 | locale: settings.weeklyNotes.locale ?? DEFAULT_WEEKLY_NOTE_LOCALE |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | function dailyNotePatterns(settings: VaultSettings): DateNotePatternSettings[] { |
| 882 | const current = currentDailyNotePattern(settings) |
no outgoing calls
no test coverage detected