(date)
| 15823 | return month === 1 && isLeapYear(date.getUTCFullYear()) ? 29 : MONTH_DAYS[month]; |
| 15824 | }; |
| 15825 | var getWeekday = function(date) { |
| 15826 | return PY_WEEKDAYS[date.getUTCDay()]; |
| 15827 | }; |
| 15828 | var monthRange = function(year, month) { |
| 15829 | var date = datetime(year, month + 1, 1); |
| 15830 | return [getWeekday(date), getMonthDays(date)]; |
no outgoing calls
no test coverage detected