(input)
| 4606 | // MOMENTS |
| 4607 | |
| 4608 | function getSetWeekYear(input) { |
| 4609 | return getSetWeekYearHelper.call( |
| 4610 | this, |
| 4611 | input, |
| 4612 | this.week(), |
| 4613 | this.weekday(), |
| 4614 | this.localeData()._week.dow, |
| 4615 | this.localeData()._week.doy |
| 4616 | ); |
| 4617 | } |
| 4618 | |
| 4619 | function getSetISOWeekYear(input) { |
| 4620 | return getSetWeekYearHelper.call( |
nothing calls this directly
no outgoing calls
no test coverage detected