(tasks: VaultTask[], iso: string)
| 359 | * calendar. Without this the sidepanel calendar under-counted `@waiting` tasks |
| 360 | * the Tasks calendar showed. (#311, complementing #236) */ |
| 361 | export function tasksDueOn(tasks: VaultTask[], iso: string): VaultTask[] { |
| 362 | return tasks.filter((t) => !t.checked && t.due === iso) |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * Give undated tasks that live in a daily note an *implicit* due date equal to |
no outgoing calls
no test coverage detected