(d: Date)
| 350 | * timezone — same encoding the parser produces for `due:`. Re-exported |
| 351 | * for UIs that need to align with task `due` strings. */ |
| 352 | export function toIsoDateLocal(d: Date): string { |
| 353 | return toIsoDate(d) |
| 354 | } |
| 355 | |
| 356 | /** Tasks scheduled for the given local date (ISO YYYY-MM-DD). Excludes done |
| 357 | * (checked) tasks but KEEPS `@waiting` tasks, so a waiting task with a due date |
no test coverage detected