PHP Classes

File: CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/src/lib/locale/prototype.js

Recommend this page to a friend!
  Classes of James Brows   Coffee CMS   CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/src/lib/locale/prototype.js   Download  
File: CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/src/lib/locale/prototype.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Coffee CMS
Content management system using MVC based themes
Author: By
Last change:
Date: 2 years ago
Size: 2,002 bytes
 

Contents

Class file image Download
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; // 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;