(input, locale)
| 1515 | } |
| 1516 | |
| 1517 | function parseIsoWeekday(input, locale) { |
| 1518 | if (typeof input === 'string') { |
| 1519 | return locale.weekdaysParse(input) % 7 || 7; |
| 1520 | } |
| 1521 | return isNaN(input) ? null : input; |
| 1522 | } |
| 1523 | |
| 1524 | // LOCALES |
| 1525 | function shiftWeekdays(ws, n) { |
no outgoing calls
no test coverage detected