()
| 32 | } |
| 33 | |
| 34 | function getTodayTaskCardTargetDate(): Date { |
| 35 | const todayLocal = new Date(); |
| 36 | return new Date( |
| 37 | Date.UTC(todayLocal.getFullYear(), todayLocal.getMonth(), todayLocal.getDate()) |
| 38 | ); |
| 39 | } |
| 40 | |
| 41 | export function getDefaultTaskCardTargetDate(task: TaskInfo): Date { |
| 42 | if (task.recurrence && task.recurrence_anchor !== "completion" && task.scheduled) { |
no test coverage detected