PATH:
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
moment
/
src
/
lib
/
units
import { makeGetSet } from '../moment/get-set'; import { addFormatToken } from '../format/format'; import { addUnitAlias } from './aliases'; import { addUnitPriority } from './priorities'; import { addRegexToken, match1to2, match2 } from '../parse/regex'; import { addParseToken } from '../parse/token'; import { DATE } from './constants'; import toInt from '../utils/to-int'; // FORMATTING addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES addUnitAlias('date', 'D'); // PRIORITY addUnitPriority('date', 9); // PARSING addRegexToken('D', match1to2); addRegexToken('DD', match1to2, match2); addRegexToken('Do', function (isStrict, locale) { // TODO: Remove "ordinalParse" fallback in next major release. return isStrict ? (locale._dayOfMonthOrdinalParse || locale._ordinalParse) : locale._dayOfMonthOrdinalParseLenient; }); addParseToken(['D', 'DD'], DATE); addParseToken('Do', function (input, array) { array[DATE] = toInt(input.match(match1to2)[0]); }); // MOMENTS export var getSetDayOfMonth = makeGetSet('Date', true);
[-] month.js
[edit]
[-] minute.js
[edit]
[-] week.js
[edit]
[-] timestamp.js
[edit]
[-] quarter.js
[edit]
[-] second.js
[edit]
[+]
..
[-] offset.js
[edit]
[-] week-year.js
[edit]
[-] day-of-month.js
[edit]
[-] priorities.js
[edit]
[-] timezone.js
[edit]
[-] year.js
[edit]
[-] week-calendar-utils.js
[edit]
[-] day-of-week.js
[edit]
[-] millisecond.js
[edit]
[-] day-of-year.js
[edit]
[-] aliases.js
[edit]
[-] hour.js
[edit]
[-] constants.js
[edit]
[-] units.js
[edit]