(task: TaskInfo, targetDate: Date)
| 452 | * Checks if a recurring task should be due on the current target date |
| 453 | */ |
| 454 | export function shouldShowRecurringTaskOnDate(task: TaskInfo, targetDate: Date): boolean { |
| 455 | return shouldShowRecurringTaskOnDateCore(task, targetDate); |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * Gets the completion state text for a recurring task on a specific date |