(input)
| 1432 | } |
| 1433 | |
| 1434 | function getSetISOWeek(input) { |
| 1435 | var week = weekOfYear(this, 1, 4).week; |
| 1436 | return input == null ? week : this.add((input - week) * 7, 'd'); |
| 1437 | } |
| 1438 | |
| 1439 | // FORMATTING |
| 1440 |
nothing calls this directly
no test coverage detected