(date = new Date())
| 823 | } |
| 824 | |
| 825 | export function noteTitleForDate(date = new Date()): string { |
| 826 | return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}` |
| 827 | } |
| 828 | |
| 829 | export interface DailyNoteLocation { |
| 830 | title: string |
no test coverage detected