(date: Date)
| 422 | } |
| 423 | |
| 424 | const daysInMonth = (date: Date): number => |
| 425 | new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth() + 1, 0)).getUTCDate() |
| 426 | |
| 427 | /** |
| 428 | * Returns the next run `Date` for the given `Cron` instance. |
no outgoing calls
no test coverage detected