(date: Date)
| 753 | } |
| 754 | |
| 755 | const daysInMonth = (date: Date): number => |
| 756 | new Date(Date.UTC(date.getUTCFullYear(), date.getUTCMonth() + 1, 0)).getUTCDate() |
| 757 | |
| 758 | /** |
| 759 | * Returns the next scheduled date/time for the given Cron instance. |
no outgoing calls
no test coverage detected