(m)
| 1551 | } |
| 1552 | |
| 1553 | function localeWeekdaysShort(m) { |
| 1554 | return m === true |
| 1555 | ? shiftWeekdays(this._weekdaysShort, this._week.dow) |
| 1556 | : m |
| 1557 | ? this._weekdaysShort[m.day()] |
| 1558 | : this._weekdaysShort; |
| 1559 | } |
| 1560 | |
| 1561 | function localeWeekdaysMin(m) { |
| 1562 | return m === true |
nothing calls this directly
no test coverage detected