MCPcopy Index your code
hub / github.com/feiyu563/PrometheusAlert / weekdaysShortRegex

Function weekdaysShortRegex

static/plugins/chart.js/Chart.bundle.js:16282–16299  ·  view source on GitHub ↗
(isStrict)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

hasOwnPropFunction · 0.85

Tested by

no test coverage detected