(cron: Cron, now?: DateTime.DateTime.Input)
| 787 | * @since 2.0.0 |
| 788 | */ |
| 789 | export const next = (cron: Cron, now?: DateTime.DateTime.Input): Date => { |
| 790 | return stepCron(cron, now, "next") |
| 791 | } |
| 792 | |
| 793 | /** |
| 794 | * Returns the previous scheduled date/time for the given Cron instance. |
no test coverage detected