(expr: ParsedCronExpression, fromMs: number)
| 205 | * a future refactor that fails to advance the date. |
| 206 | */ |
| 207 | export function computeNextCronRun(expr: ParsedCronExpression, fromMs: number): number | null { |
| 208 | return nextRunWithinMinutes(expr, fromMs, 5 * 366 * 24 * 60); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * True iff at least one fire exists within `years` years of `fromMs`. |
no test coverage detected