| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import { Locale } from './constructor';
- var proto = Locale.prototype;
- import { calendar } from './calendar';
- import { longDateFormat } from './formats';
- import { invalidDate } from './invalid';
- import { ordinal } from './ordinal';
- import { preParsePostFormat } from './pre-post-format';
- import { relativeTime, pastFuture } from './relative';
- import { set } from './set';
- proto.calendar = calendar;
- proto.longDateFormat = longDateFormat;
- proto.invalidDate = invalidDate;
- proto.ordinal = ordinal;
- proto.preparse = preParsePostFormat;
- proto.postformat = preParsePostFormat;
- proto.relativeTime = relativeTime;
- proto.pastFuture = pastFuture;
- proto.set = set;
- // Eras
- import {
- localeEras,
- localeErasParse,
- localeErasConvertYear,
- erasAbbrRegex,
- erasNameRegex,
- erasNarrowRegex,
- } from '../units/era';
- proto.eras = localeEras;
- proto.erasParse = localeErasParse;
- proto.erasConvertYear = localeErasConvertYear;
- proto.erasAbbrRegex = erasAbbrRegex;
- proto.erasNameRegex = erasNameRegex;
- proto.erasNarrowRegex = erasNarrowRegex;
- // Month
- import {
- localeMonthsParse,
- localeMonths,
- localeMonthsShort,
- monthsRegex,
- monthsShortRegex,
- } from '../units/month';
- proto.months = localeMonths;
- proto.monthsShort = localeMonthsShort;
- proto.monthsParse = localeMonthsParse;
- proto.monthsRegex = monthsRegex;
- proto.monthsShortRegex = monthsShortRegex;
- // Week
- import {
- localeWeek,
- localeFirstDayOfYear,
- localeFirstDayOfWeek,
- } from '../units/week';
- proto.week = localeWeek;
- proto.firstDayOfYear = localeFirstDayOfYear;
- proto.firstDayOfWeek = localeFirstDayOfWeek;
- // Day of Week
- import {
- localeWeekdaysParse,
- localeWeekdays,
- localeWeekdaysMin,
- localeWeekdaysShort,
- weekdaysRegex,
- weekdaysShortRegex,
- weekdaysMinRegex,
- } from '../units/day-of-week';
- proto.weekdays = localeWeekdays;
- proto.weekdaysMin = localeWeekdaysMin;
- proto.weekdaysShort = localeWeekdaysShort;
- proto.weekdaysParse = localeWeekdaysParse;
- proto.weekdaysRegex = weekdaysRegex;
- proto.weekdaysShortRegex = weekdaysShortRegex;
- proto.weekdaysMinRegex = weekdaysMinRegex;
- // Hours
- import { localeIsPM, localeMeridiem } from '../units/hour';
- proto.isPM = localeIsPM;
- proto.meridiem = localeMeridiem;
|