summaryrefslogtreecommitdiff
path: root/node_modules/moment/src/lib/units/day-of-month.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/moment/src/lib/units/day-of-month.js')
-rw-r--r--node_modules/moment/src/lib/units/day-of-month.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/node_modules/moment/src/lib/units/day-of-month.js b/node_modules/moment/src/lib/units/day-of-month.js
new file mode 100644
index 0000000..41b3193
--- /dev/null
+++ b/node_modules/moment/src/lib/units/day-of-month.js
@@ -0,0 +1,35 @@
+import { makeGetSet } from '../moment/get-set';
+import { addFormatToken } from '../format/format';
+import {
+ addRegexToken,
+ match1to2,
+ match2,
+ match1to2NoLeadingZero,
+} 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');
+
+// PARSING
+
+addRegexToken('D', match1to2, match1to2NoLeadingZero);
+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);