(date = new Date())
| 840 | } |
| 841 | |
| 842 | export function weeklyNoteTitle(date = new Date()): string { |
| 843 | return `${getISOWeekYear(date)}-W${pad(getISOWeek(date))}` |
| 844 | } |
| 845 | |
| 846 | export interface WeeklyNoteLocation { |
| 847 | title: string |
no test coverage detected