()
| 581 | }); |
| 582 | |
| 583 | function getDaysInFebruary() { |
| 584 | let days; |
| 585 | if ((startDate.getUTCFullYear() + 1) % 4 === 0) { |
| 586 | days = 29; |
| 587 | } else { |
| 588 | days = 28; |
| 589 | } |
| 590 | return days; |
| 591 | } |
| 592 | |
| 593 | function getEndOfFebruary(startTime, days) { |
| 594 | return setDate(addYears(startTime, 1), 1, days); //addMonths(startTime, interval * 2) |
no outgoing calls
no test coverage detected