You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
|
3 years ago
|
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);
|