Lines Matching refs:months

7938     return this.localeData().months(this, format);
8007 this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();
8058 … this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');
8062 regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');
8168 longPieces.push(this.months(mom, ''));
8169 mixedPieces.push(this.months(mom, ''));
8899 months: defaultLocaleMonths,
9814 months = normalizedInput.month || 0,
9836 this._months = +months +
10136 duration.M = diffRes.months;
10161 var res = {milliseconds: 0, months: 0};
10163 res.months = other.month() - base.month() +
10165 if (base.clone().add(res.months, 'M').isAfter(other)) {
10166 --res.months;
10169 res.milliseconds = +other - +(base.clone().add(res.months, 'M'));
10177 return {milliseconds: 0, months: 0};
10186 res.months = -res.months;
10213 months = absRound(duration._months);
10228 if (months) {
10229 setMonth(mom, get(mom, 'Month') + months * isAdding);
10232 hooks.updateOffset(mom, days || months);
10572 months: m.month(),
11008 proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);
11038 proto$1.months = localeMonths;
11182 data.months = mathAbs(data.months);
11219 var months = this._months;
11225 if (!((milliseconds >= 0 && days >= 0 && months >= 0) ||
11226 (milliseconds <= 0 && days <= 0 && months <= 0))) {
11227 milliseconds += absCeil(monthsToDays(months) + days) * 864e5;
11229 months = 0;
11249 months += monthsFromDays;
11253 years = absFloor(months / 12);
11254 months %= 12;
11257 data.months = months;
11269 function monthsToDays (months) {
11271 return months * 146097 / 4800;
11279 var months;
11286 months = this._months + daysToMonths(days);
11287 return units === 'month' ? months : months / 12;
11348 var months = makeGetter('months');
11376 var months = round(duration.as('M'));
11387 months <= 1 && ['M'] ||
11388 months < thresholds.M && ['MM', months] ||
11455 var months = abs$1(this._months);
11465 years = absFloor(months / 12);
11466 months %= 12;
11471 var M = months;
11519 proto$2.months = months;
11563 hooks.months = listMonths;
50166months : ['January','February','March','April','May','June','July','August','September','Oc…
50277 opts.i18n.months[i] + '</option>');
50280 …monthHtml = '<div class="pika-label">' + opts.i18n.months[month] + '<select class="pika-select pik…