(isStrict)
| 16280 | |
| 16281 | var defaultWeekdaysShortRegex = matchWord; |
| 16282 | function weekdaysShortRegex (isStrict) { |
| 16283 | if (this._weekdaysParseExact) { |
| 16284 | if (!hasOwnProp(this, '_weekdaysRegex')) { |
| 16285 | computeWeekdaysParse.call(this); |
| 16286 | } |
| 16287 | if (isStrict) { |
| 16288 | return this._weekdaysShortStrictRegex; |
| 16289 | } else { |
| 16290 | return this._weekdaysShortRegex; |
| 16291 | } |
| 16292 | } else { |
| 16293 | if (!hasOwnProp(this, '_weekdaysShortRegex')) { |
| 16294 | this._weekdaysShortRegex = defaultWeekdaysShortRegex; |
| 16295 | } |
| 16296 | return this._weekdaysShortStrictRegex && isStrict ? |
| 16297 | this._weekdaysShortStrictRegex : this._weekdaysShortRegex; |
| 16298 | } |
| 16299 | } |
| 16300 | |
| 16301 | var defaultWeekdaysMinRegex = matchWord; |
| 16302 | function weekdaysMinRegex (isStrict) { |
nothing calls this directly
no test coverage detected