Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
luxon
/
build
/
cjs-browser
/
Filename :
luxon.js
back
Copy
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; var classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; var createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var inherits = function (subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }; var possibleConstructorReturn = function (self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }; // these aren't really private, but nor are they really useful to document /** * @private */ var LuxonError = function (_Error) { inherits(LuxonError, _Error); function LuxonError() { classCallCheck(this, LuxonError); return possibleConstructorReturn(this, _Error.apply(this, arguments)); } return LuxonError; }(Error); /** * @private */ var InvalidDateTimeError = function (_LuxonError) { inherits(InvalidDateTimeError, _LuxonError); function InvalidDateTimeError(reason) { classCallCheck(this, InvalidDateTimeError); return possibleConstructorReturn(this, _LuxonError.call(this, 'Invalid DateTime: ' + reason)); } return InvalidDateTimeError; }(LuxonError); /** * @private */ var InvalidIntervalError = function (_LuxonError2) { inherits(InvalidIntervalError, _LuxonError2); function InvalidIntervalError(reason) { classCallCheck(this, InvalidIntervalError); return possibleConstructorReturn(this, _LuxonError2.call(this, 'Invalid Interval: ' + reason)); } return InvalidIntervalError; }(LuxonError); /** * @private */ var InvalidDurationError = function (_LuxonError3) { inherits(InvalidDurationError, _LuxonError3); function InvalidDurationError(reason) { classCallCheck(this, InvalidDurationError); return possibleConstructorReturn(this, _LuxonError3.call(this, 'Invalid Duration: ' + reason)); } return InvalidDurationError; }(LuxonError); /** * @private */ var ConflictingSpecificationError = function (_LuxonError4) { inherits(ConflictingSpecificationError, _LuxonError4); function ConflictingSpecificationError() { classCallCheck(this, ConflictingSpecificationError); return possibleConstructorReturn(this, _LuxonError4.apply(this, arguments)); } return ConflictingSpecificationError; }(LuxonError); /** * @private */ var InvalidUnitError = function (_LuxonError5) { inherits(InvalidUnitError, _LuxonError5); function InvalidUnitError(unit) { classCallCheck(this, InvalidUnitError); return possibleConstructorReturn(this, _LuxonError5.call(this, 'Invalid unit ' + unit)); } return InvalidUnitError; }(LuxonError); /** * @private */ var InvalidArgumentError = function (_LuxonError6) { inherits(InvalidArgumentError, _LuxonError6); function InvalidArgumentError() { classCallCheck(this, InvalidArgumentError); return possibleConstructorReturn(this, _LuxonError6.apply(this, arguments)); } return InvalidArgumentError; }(LuxonError); /** * @private */ var ZoneIsAbstractError = function (_LuxonError7) { inherits(ZoneIsAbstractError, _LuxonError7); function ZoneIsAbstractError() { classCallCheck(this, ZoneIsAbstractError); return possibleConstructorReturn(this, _LuxonError7.call(this, 'Zone is an abstract class')); } return ZoneIsAbstractError; }(LuxonError); /* eslint no-unused-vars: "off" */ /** * @interface */ var Zone = function () { function Zone() { classCallCheck(this, Zone); } /** * Returns the offset's common name (such as EST) at the specified timestamp * @abstract * @param {number} ts - Epoch milliseconds for which to get the name * @param {Object} opts - Options to affect the format * @param {string} opts.format - What style of offset to return. Accepts 'long' or 'short'. * @param {string} opts.localeCode - What locale to return the offset name in. Defaults to us-en * @return {string} */ Zone.offsetName = function offsetName(ts, opts) { throw new ZoneIsAbstractError(); }; /** * Return the offset in minutes for this zone at the specified timestamp. * @abstract * @param {number} ts - Epoch milliseconds for which to compute the offset * @return {number} */ Zone.prototype.offset = function offset(ts) { throw new ZoneIsAbstractError(); }; /** * Return whether this Zone is equal to another zoner * @abstract * @param {Zone} otherZone - the zone to compare * @return {boolean} */ Zone.prototype.equals = function equals(otherZone) { throw new ZoneIsAbstractError(); }; /** * Return whether this Zone is valid. * @abstract * @return {boolean} */ createClass(Zone, [{ key: 'type', /** * The type of zone * @abstract * @return {string} */ get: function get$$1() { throw new ZoneIsAbstractError(); } /** * The name of this zone. * @abstract * @return {string} */ }, { key: 'name', get: function get$$1() { throw new ZoneIsAbstractError(); } /** * Returns whether the offset is known to be fixed for the whole year. * @abstract * @return {boolean} */ }, { key: 'universal', get: function get$$1() { throw new ZoneIsAbstractError(); } }, { key: 'isValid', get: function get$$1() { throw new ZoneIsAbstractError(); } }]); return Zone; }(); var singleton = null; /** * @private */ var LocalZone = function (_Zone) { inherits(LocalZone, _Zone); function LocalZone() { classCallCheck(this, LocalZone); return possibleConstructorReturn(this, _Zone.apply(this, arguments)); } LocalZone.prototype.offsetName = function offsetName(ts, _ref) { var format = _ref.format, locale = _ref.locale; return Util.parseZoneInfo(ts, format, locale); }; LocalZone.prototype.offset = function offset(ts) { return -new Date(ts).getTimezoneOffset(); }; LocalZone.prototype.equals = function equals(otherZone) { return otherZone.type === 'local'; }; createClass(LocalZone, [{ key: 'type', get: function get$$1() { return 'local'; } }, { key: 'name', get: function get$$1() { if (Util.hasIntl()) { return new Intl.DateTimeFormat().resolvedOptions().timeZone; } else return 'local'; } }, { key: 'universal', get: function get$$1() { return false; } }, { key: 'isValid', get: function get$$1() { return true; } }], [{ key: 'instance', get: function get$$1() { if (singleton === null) { singleton = new LocalZone(); } return singleton; } }]); return LocalZone; }(Zone); var dtfCache = {}; function makeDTF(zone) { if (!dtfCache[zone]) { dtfCache[zone] = new Intl.DateTimeFormat('en-US', { hour12: false, timeZone: zone, year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' }); } return dtfCache[zone]; } var typeToPos = { year: 0, month: 1, day: 2, hour: 3, minute: 4, second: 5 }; function hackyOffset(dtf, date) { var formatted = dtf.format(date).replace(/\u200E/g, ''), parsed = /(\d+)\/(\d+)\/(\d+),? (\d+):(\d+):(\d+)/.exec(formatted), fMonth = parsed[1], fDay = parsed[2], fYear = parsed[3], fHour = parsed[4], fMinute = parsed[5], fSecond = parsed[6]; return [fYear, fMonth, fDay, fHour, fMinute, fSecond]; } function partsOffset(dtf, date) { var formatted = dtf.formatToParts(date), filled = []; for (var i = 0; i < formatted.length; i++) { var _formatted$i = formatted[i], type = _formatted$i.type, value = _formatted$i.value, pos = typeToPos[type]; if (!Util.isUndefined(pos)) { filled[pos] = parseInt(value, 10); } } return filled; } /** * @private */ var IANAZone = function (_Zone) { inherits(IANAZone, _Zone); IANAZone.isValidSpecifier = function isValidSpecifier(s) { return s && s.match(/^[a-z_+-]{1,256}\/[a-z_+-]{1,256}$/i); }; IANAZone.isValidZone = function isValidZone(zone) { try { new Intl.DateTimeFormat('en-US', { timeZone: zone }).format(); return true; } catch (e) { return false; } }; // Etc/GMT+8 -> 480 IANAZone.parseGMTOffset = function parseGMTOffset(specifier) { if (specifier) { var match = specifier.match(/^Etc\/GMT([+-]\d{1,2})$/i); if (match) { return 60 * parseInt(match[1]); } } return null; }; function IANAZone(name) { classCallCheck(this, IANAZone); var _this = possibleConstructorReturn(this, _Zone.call(this)); _this.zoneName = name; _this.valid = IANAZone.isValidZone(name); return _this; } IANAZone.prototype.offsetName = function offsetName(ts, _ref) { var format = _ref.format, locale = _ref.locale; return Util.parseZoneInfo(ts, format, locale, this.zoneName); }; IANAZone.prototype.offset = function offset(ts) { var date = new Date(ts), dtf = makeDTF(this.zoneName), _ref2 = dtf.formatToParts ? partsOffset(dtf, date) : hackyOffset(dtf, date), fYear = _ref2[0], fMonth = _ref2[1], fDay = _ref2[2], fHour = _ref2[3], fMinute = _ref2[4], fSecond = _ref2[5], asUTC = Date.UTC(fYear, fMonth - 1, fDay, fHour, fMinute, fSecond); var asTS = date.valueOf(); asTS -= asTS % 1000; return (asUTC - asTS) / (60 * 1000); }; IANAZone.prototype.equals = function equals(otherZone) { return otherZone.type === 'iana' && otherZone.zoneName === this.zoneName; }; createClass(IANAZone, [{ key: 'type', get: function get$$1() { return 'iana'; } }, { key: 'name', get: function get$$1() { return this.zoneName; } }, { key: 'universal', get: function get$$1() { return false; } }, { key: 'isValid', get: function get$$1() { return this.valid; } }]); return IANAZone; }(Zone); var singleton$1 = null; function hoursMinutesOffset(z) { var hours = Math.trunc(z.fixed / 60), minutes = Math.abs(z.fixed % 60), sign = hours > 0 ? '+' : '-', base = sign + Math.abs(hours); return minutes > 0 ? base + ':' + Util.padStart(minutes, 2) : base; } /** * @private */ var FixedOffsetZone = function (_Zone) { inherits(FixedOffsetZone, _Zone); FixedOffsetZone.instance = function instance(offset) { return offset === 0 ? FixedOffsetZone.utcInstance : new FixedOffsetZone(offset); }; FixedOffsetZone.parseSpecifier = function parseSpecifier(s) { if (s) { var r = s.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i); if (r) { return new FixedOffsetZone(Util.signedOffset(r[1], r[2])); } } return null; }; createClass(FixedOffsetZone, null, [{ key: 'utcInstance', get: function get$$1() { if (singleton$1 === null) { singleton$1 = new FixedOffsetZone(0); } return singleton$1; } }]); function FixedOffsetZone(offset) { classCallCheck(this, FixedOffsetZone); var _this = possibleConstructorReturn(this, _Zone.call(this)); _this.fixed = offset; return _this; } FixedOffsetZone.prototype.offsetName = function offsetName() { return this.name; }; FixedOffsetZone.prototype.offset = function offset() { return this.fixed; }; FixedOffsetZone.prototype.equals = function equals(otherZone) { return otherZone.type === 'fixed' && otherZone.fixed === this.fixed; }; createClass(FixedOffsetZone, [{ key: 'type', get: function get$$1() { return 'fixed'; } }, { key: 'name', get: function get$$1() { return this.fixed === 0 ? 'UTC' : 'UTC' + hoursMinutesOffset(this); } }, { key: 'universal', get: function get$$1() { return true; } }, { key: 'isValid', get: function get$$1() { return true; } }]); return FixedOffsetZone; }(Zone); var singleton$2 = null; var InvalidZone = function (_Zone) { inherits(InvalidZone, _Zone); function InvalidZone() { classCallCheck(this, InvalidZone); return possibleConstructorReturn(this, _Zone.apply(this, arguments)); } InvalidZone.prototype.offsetName = function offsetName() { return null; }; InvalidZone.prototype.offset = function offset() { return NaN; }; InvalidZone.prototype.equals = function equals() { return false; }; createClass(InvalidZone, [{ key: 'type', get: function get$$1() { return 'invalid'; } }, { key: 'name', get: function get$$1() { return null; } }, { key: 'universal', get: function get$$1() { return false; } }, { key: 'isValid', get: function get$$1() { return false; } }], [{ key: 'instance', get: function get$$1() { if (singleton$2 === null) { singleton$2 = new InvalidZone(); } return singleton$2; } }]); return InvalidZone; }(Zone); /** * @private */ var Formats = function Formats() { classCallCheck(this, Formats); }; Formats.DATE_SHORT = { year: 'numeric', month: 'numeric', day: 'numeric' }; Formats.DATE_MED = { year: 'numeric', month: 'short', day: 'numeric' }; Formats.DATE_FULL = { year: 'numeric', month: 'long', day: 'numeric' }; Formats.DATE_HUGE = { year: 'numeric', month: 'long', day: 'numeric', weekday: 'long' }; Formats.TIME_SIMPLE = { hour: 'numeric', minute: '2-digit' }; Formats.TIME_WITH_SECONDS = { hour: 'numeric', minute: '2-digit', second: '2-digit' }; Formats.TIME_WITH_SHORT_OFFSET = { hour: 'numeric', minute: '2-digit', second: '2-digit', timeZoneName: 'short' }; Formats.TIME_WITH_LONG_OFFSET = { hour: 'numeric', minute: '2-digit', second: '2-digit', timeZoneName: 'long' }; Formats.TIME_24_SIMPLE = { hour: 'numeric', minute: '2-digit', hour12: false }; /** * {@link toLocaleString}; format like '09:30:23', always 24-hour. */ Formats.TIME_24_WITH_SECONDS = { hour: 'numeric', minute: '2-digit', second: '2-digit', hour12: false }; /** * {@link toLocaleString}; format like '09:30:23 EDT', always 24-hour. */ Formats.TIME_24_WITH_SHORT_OFFSET = { hour: 'numeric', minute: '2-digit', second: '2-digit', hour12: false, timeZoneName: 'short' }; /** * {@link toLocaleString}; format like '09:30:23 Eastern Daylight Time', always 24-hour. */ Formats.TIME_24_WITH_LONG_OFFSET = { hour: 'numeric', minute: '2-digit', second: '2-digit', hour12: false, timeZoneName: 'long' }; /** * {@link toLocaleString}; format like '10/14/1983, 9:30 AM'. Only 12-hour if the locale is. */ Formats.DATETIME_SHORT = { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: '2-digit' }; /** * {@link toLocaleString}; format like '10/14/1983, 9:30:33 AM'. Only 12-hour if the locale is. */ Formats.DATETIME_SHORT_WITH_SECONDS = { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: '2-digit', second: '2-digit' }; Formats.DATETIME_MED = { year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: '2-digit' }; Formats.DATETIME_MED_WITH_SECONDS = { year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: '2-digit', second: '2-digit' }; Formats.DATETIME_FULL = { year: 'numeric', month: 'long', day: 'numeric', hour: 'numeric', minute: '2-digit', timeZoneName: 'short' }; Formats.DATETIME_FULL_WITH_SECONDS = { year: 'numeric', month: 'long', day: 'numeric', hour: 'numeric', minute: '2-digit', second: '2-digit', timeZoneName: 'short' }; Formats.DATETIME_HUGE = { year: 'numeric', month: 'long', day: 'numeric', weekday: 'long', hour: 'numeric', minute: '2-digit', timeZoneName: 'long' }; Formats.DATETIME_HUGE_WITH_SECONDS = { year: 'numeric', month: 'long', day: 'numeric', weekday: 'long', hour: 'numeric', minute: '2-digit', second: '2-digit', timeZoneName: 'long' }; function stringify(obj) { return JSON.stringify(obj, Object.keys(obj).sort()); } /** * @private */ var English = function () { function English() { classCallCheck(this, English); } English.months = function months(length) { switch (length) { case 'narrow': return English.monthsNarrow; case 'short': return English.monthsShort; case 'long': return English.monthsLong; case 'numeric': return ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12']; case '2-digit': return ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12']; default: return null; } }; English.weekdays = function weekdays(length) { switch (length) { case 'narrow': return English.weekdaysNarrow; case 'short': return English.weekdaysShort; case 'long': return English.weekdaysLong; case 'numeric': return ['1', '2', '3', '4', '5', '6', '7']; default: return null; } }; English.eras = function eras(length) { switch (length) { case 'narrow': return English.erasNarrow; case 'short': return English.erasShort; case 'long': return English.erasLong; default: return null; } }; English.meridiemForDateTime = function meridiemForDateTime(dt) { return English.meridiems[dt.hour < 12 ? 0 : 1]; }; English.weekdayForDateTime = function weekdayForDateTime(dt, length) { return English.weekdays(length)[dt.weekday - 1]; }; English.monthForDateTime = function monthForDateTime(dt, length) { return English.months(length)[dt.month - 1]; }; English.eraForDateTime = function eraForDateTime(dt, length) { return English.eras(length)[dt.year < 0 ? 0 : 1]; }; English.formatString = function formatString(knownFormat) { // these all have the offsets removed because we don't have access to them // without all the intl stuff this is backfilling var filtered = Util.pick(knownFormat, ['weekday', 'era', 'year', 'month', 'day', 'hour', 'minute', 'second', 'timeZoneName', 'hour12']), key = stringify(filtered), dateTimeHuge = 'EEEE, LLLL d, yyyy, h:mm a'; switch (key) { case stringify(Formats.DATE_SHORT): return 'M/d/yyyy'; case stringify(Formats.DATE_MED): return 'LLL d, yyyy'; case stringify(Formats.DATE_FULL): return 'LLLL d, yyyy'; case stringify(Formats.DATE_HUGE): return 'EEEE, LLLL d, yyyy'; case stringify(Formats.TIME_SIMPLE): return 'h:mm a'; case stringify(Formats.TIME_WITH_SECONDS): return 'h:mm:ss a'; case stringify(Formats.TIME_WITH_SHORT_OFFSET): return 'h:mm a'; case stringify(Formats.TIME_WITH_LONG_OFFSET): return 'h:mm a'; case stringify(Formats.TIME_24_SIMPLE): return 'HH:mm'; case stringify(Formats.TIME_24_WITH_SECONDS): return 'HH:mm:ss'; case stringify(Formats.TIME_24_WITH_SHORT_OFFSET): return 'HH:mm'; case stringify(Formats.TIME_24_WITH_LONG_OFFSET): return 'HH:mm'; case stringify(Formats.DATETIME_SHORT): return 'M/d/yyyy, h:mm a'; case stringify(Formats.DATETIME_MED): return 'LLL d, yyyy, h:mm a'; case stringify(Formats.DATETIME_FULL): return 'LLLL d, yyyy, h:mm a'; case stringify(Formats.DATETIME_HUGE): return dateTimeHuge; case stringify(Formats.DATETIME_SHORT_WITH_SECONDS): return 'M/d/yyyy, h:mm:ss a'; case stringify(Formats.DATETIME_MED_WITH_SECONDS): return 'LLL d, yyyy, h:mm:ss a'; case stringify(Formats.DATETIME_FULL_WITH_SECONDS): return 'LLLL d, yyyy, h:mm:ss a'; case stringify(Formats.DATETIME_HUGE_WITH_SECONDS): return 'EEEE, LLLL d, yyyy, h:mm:ss a'; default: return dateTimeHuge; } }; createClass(English, null, [{ key: 'monthsLong', get: function get$$1() { return ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']; } }, { key: 'monthsShort', get: function get$$1() { return ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; } }, { key: 'monthsNarrow', get: function get$$1() { return ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D']; } }, { key: 'weekdaysLong', get: function get$$1() { return ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']; } }, { key: 'weekdaysShort', get: function get$$1() { return ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']; } }, { key: 'weekdaysNarrow', get: function get$$1() { return ['M', 'T', 'W', 'T', 'F', 'S', 'S']; } }, { key: 'meridiems', get: function get$$1() { return ['AM', 'PM']; } }, { key: 'erasLong', get: function get$$1() { return ['Before Christ', 'Anno Domini']; } }, { key: 'erasShort', get: function get$$1() { return ['BC', 'AD']; } }, { key: 'erasNarrow', get: function get$$1() { return ['B', 'A']; } }]); return English; }(); function stringifyTokens(splits, tokenToString) { var s = ''; for (var _iterator = splits, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { var _ref; if (_isArray) { if (_i >= _iterator.length) break; _ref = _iterator[_i++]; } else { _i = _iterator.next(); if (_i.done) break; _ref = _i.value; } var token = _ref; if (token.literal) { s += token.val; } else { s += tokenToString(token.val); } } return s; } var tokenToObject = { D: Formats.DATE_SHORT, DD: Formats.DATE_MED, DDD: Formats.DATE_FULL, DDDD: Formats.DATE_HUGE, t: Formats.TIME_SIMPLE, tt: Formats.TIME_WITH_SECONDS, ttt: Formats.TIME_WITH_SHORT_OFFSET, tttt: Formats.TIME_WITH_LONG_OFFSET, T: Formats.TIME_24_SIMPLE, TT: Formats.TIME_24_WITH_SECONDS, TTT: Formats.TIME_24_WITH_SHORT_OFFSET, TTTT: Formats.TIME_24_WITH_LONG_OFFSET, f: Formats.DATETIME_SHORT, ff: Formats.DATETIME_MED, fff: Formats.DATETIME_FULL, ffff: Formats.DATETIME_HUGE, F: Formats.DATETIME_SHORT_WITH_SECONDS, FF: Formats.DATETIME_MED_WITH_SECONDS, FFF: Formats.DATETIME_FULL_WITH_SECONDS, FFFF: Formats.DATETIME_HUGE_WITH_SECONDS }; /** * @private */ var Formatter = function () { Formatter.create = function create(locale) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var formatOpts = Object.assign({}, { round: true }, opts); return new Formatter(locale, formatOpts); }; Formatter.parseFormat = function parseFormat(fmt) { var current = null, currentFull = '', bracketed = false; var splits = []; for (var i = 0; i < fmt.length; i++) { var c = fmt.charAt(i); if (c === "'") { if (currentFull.length > 0) { splits.push({ literal: bracketed, val: currentFull }); } current = null; currentFull = ''; bracketed = !bracketed; } else if (bracketed) { currentFull += c; } else if (c === current) { currentFull += c; } else { if (currentFull.length > 0) { splits.push({ literal: false, val: currentFull }); } currentFull = c; current = c; } } if (currentFull.length > 0) { splits.push({ literal: bracketed, val: currentFull }); } return splits; }; function Formatter(locale, formatOpts) { classCallCheck(this, Formatter); this.opts = formatOpts; this.loc = locale; this.systemLoc = null; } Formatter.prototype.formatWithSystemDefault = function formatWithSystemDefault(dt, opts) { if (this.systemLoc === null) { this.systemLoc = this.loc.redefaultToSystem(); } var df = this.systemLoc.dtFormatter(dt, Object.assign({}, this.opts, opts)); return df.format(); }; Formatter.prototype.formatDateTime = function formatDateTime(dt) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var df = this.loc.dtFormatter(dt, Object.assign({}, this.opts, opts)); return df.format(); }; Formatter.prototype.formatDateTimeParts = function formatDateTimeParts(dt) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var df = this.loc.dtFormatter(dt, Object.assign({}, this.opts, opts)); return df.formatToParts(); }; Formatter.prototype.resolvedOptions = function resolvedOptions(dt) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var df = this.loc.dtFormatter(dt, Object.assign({}, this.opts, opts)); return df.resolvedOptions(); }; Formatter.prototype.num = function num(n) { var p = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var opts = Object.assign({}, this.opts); if (p > 0) { opts.padTo = p; } return this.loc.numberFormatter(opts).format(n); }; Formatter.prototype.formatDateTimeFromString = function formatDateTimeFromString(dt, fmt) { var _this = this; var knownEnglish = this.loc.listingMode() === 'en'; var string = function string(opts, extract) { return _this.loc.extract(dt, opts, extract); }, formatOffset = function formatOffset(opts) { if (dt.isOffsetFixed && dt.offset === 0 && opts.allowZ) { return 'Z'; } var hours = Math.trunc(dt.offset / 60), minutes = Math.abs(dt.offset % 60), sign = hours >= 0 ? '+' : '-', base = '' + sign + Math.abs(hours); switch (opts.format) { case 'short': return '' + sign + _this.num(Math.abs(hours), 2) + ':' + _this.num(minutes, 2); case 'narrow': return minutes > 0 ? base + ':' + minutes : base; case 'techie': return '' + sign + _this.num(Math.abs(hours), 2) + _this.num(minutes, 2); default: throw new RangeError('Value format ' + opts.format + ' is out of range for property format'); } }, meridiem = function meridiem() { return knownEnglish ? English.meridiemForDateTime(dt) : string({ hour: 'numeric', hour12: true }, 'dayperiod'); }, month = function month(length, standalone) { return knownEnglish ? English.monthForDateTime(dt, length) : string(standalone ? { month: length } : { month: length, day: 'numeric' }, 'month'); }, weekday = function weekday(length, standalone) { return knownEnglish ? English.weekdayForDateTime(dt, length) : string(standalone ? { weekday: length } : { weekday: length, month: 'long', day: 'numeric' }, 'weekday'); }, maybeMacro = function maybeMacro(token) { var macro = tokenToObject[token]; if (macro) { return _this.formatWithSystemDefault(dt, macro); } else { return token; } }, era = function era(length) { return knownEnglish ? English.eraForDateTime(dt, length) : string({ era: length }, 'era'); }, tokenToString = function tokenToString(token) { var outputCal = _this.loc.outputCalendar; // Where possible: http://cldr.unicode.org/translation/date-time#TOC-Stand-Alone-vs.-Format-Styles switch (token) { // ms case 'S': return _this.num(dt.millisecond); case 'u': // falls through case 'SSS': return _this.num(dt.millisecond, 3); // seconds case 's': return _this.num(dt.second); case 'ss': return _this.num(dt.second, 2); // minutes case 'm': return _this.num(dt.minute); case 'mm': return _this.num(dt.minute, 2); // hours case 'h': return _this.num(dt.hour % 12 === 0 ? 12 : dt.hour % 12); case 'hh': return _this.num(dt.hour % 12 === 0 ? 12 : dt.hour % 12, 2); case 'H': return _this.num(dt.hour); case 'HH': return _this.num(dt.hour, 2); // offset case 'Z': // like +6 return formatOffset({ format: 'narrow', allowZ: true }); case 'ZZ': // like +06:00 return formatOffset({ format: 'short', allowZ: true }); case 'ZZZ': // like +0600 return formatOffset({ format: 'techie', allowZ: false }); case 'ZZZZ': // like EST return dt.offsetNameShort; case 'ZZZZZ': // like Eastern Standard Time return dt.offsetNameLong; // zone case 'z': // like America/New_York return dt.zoneName; // meridiems case 'a': return meridiem(); // dates case 'd': return outputCal ? string({ day: 'numeric' }, 'day') : _this.num(dt.day); case 'dd': return outputCal ? string({ day: '2-digit' }, 'day') : _this.num(dt.day, 2); // weekdays - standalone case 'c': // like 1 return _this.num(dt.weekday); case 'ccc': // like 'Tues' return weekday('short', true); case 'cccc': // like 'Tuesday' return weekday('long', true); case 'ccccc': // like 'T' return weekday('narrow', true); // weekdays - format case 'E': // like 1 return _this.num(dt.weekday); case 'EEE': // like 'Tues' return weekday('short', false); case 'EEEE': // like 'Tuesday' return weekday('long', false); case 'EEEEE': // like 'T' return weekday('narrow', false); // months - standalone case 'L': // like 1 return outputCal ? string({ month: 'numeric', day: 'numeric' }, 'month') : _this.num(dt.month); case 'LL': // like 01, doesn't seem to work return outputCal ? string({ month: '2-digit', day: 'numeric' }, 'month') : _this.num(dt.month, 2); case 'LLL': // like Jan return month('short', true); case 'LLLL': // like January return month('long', true); case 'LLLLL': // like J return month('narrow', true); // months - format case 'M': // like 1 return outputCal ? string({ month: 'numeric' }, 'month') : _this.num(dt.month); case 'MM': // like 01 return outputCal ? string({ month: '2-digit' }, 'month') : _this.num(dt.month, 2); case 'MMM': // like Jan return month('short', false); case 'MMMM': // like January return month('long', false); case 'MMMMM': // like J return month('narrow', false); // years case 'y': // like 2014 return outputCal ? string({ year: 'numeric' }, 'year') : _this.num(dt.year); case 'yy': // like 14 return outputCal ? string({ year: '2-digit' }, 'year') : _this.num(dt.year.toString().slice(-2), 2); case 'yyyy': // like 0012 return outputCal ? string({ year: 'numeric' }, 'year') : _this.num(dt.year, 4); case 'yyyyyy': // like 000012 return outputCal ? string({ year: 'numeric' }, 'year') : _this.num(dt.year, 6); // eras case 'G': // like AD return era('short'); case 'GG': // like Anno Domini return era('long'); case 'GGGGG': return era('narrow'); case 'kk': return _this.num(dt.weekYear.toString().slice(-2), 2); case 'kkkk': return _this.num(dt.weekYear, 4); case 'W': return _this.num(dt.weekNumber); case 'WW': return _this.num(dt.weekNumber, 2); case 'o': return _this.num(dt.ordinal); case 'ooo': return _this.num(dt.ordinal, 3); default: return maybeMacro(token); } }; return stringifyTokens(Formatter.parseFormat(fmt), tokenToString); }; Formatter.prototype.formatDurationFromString = function formatDurationFromString(dur, fmt) { var _this2 = this; var tokenToField = function tokenToField(token) { switch (token[0]) { case 'S': return 'millisecond'; case 's': return 'second'; case 'm': return 'minute'; case 'h': return 'hour'; case 'd': return 'day'; case 'M': return 'month'; case 'y': return 'year'; default: return null; } }, tokenToString = function tokenToString(lildur) { return function (token) { var mapped = tokenToField(token); if (mapped) { return _this2.num(lildur.get(mapped), token.length); } else { return token; } }; }, tokens = Formatter.parseFormat(fmt), realTokens = tokens.reduce(function (found, _ref2) { var literal = _ref2.literal, val = _ref2.val; return literal ? found : found.concat(val); }, []), collapsed = dur.shiftTo.apply(dur, realTokens.map(tokenToField).filter(function (t) { return t; })); return stringifyTokens(tokens, tokenToString(collapsed)); }; return Formatter; }(); var sysLocaleCache = null; function systemLocale() { if (sysLocaleCache) { return sysLocaleCache; } else if (Util.hasIntl()) { sysLocaleCache = new Intl.DateTimeFormat().resolvedOptions().locale; return sysLocaleCache; } else { sysLocaleCache = 'en-US'; return sysLocaleCache; } } function intlConfigString(locale, numberingSystem, outputCalendar) { if (Util.hasIntl()) { locale = Array.isArray(locale) ? locale : [locale]; if (outputCalendar || numberingSystem) { locale = locale.map(function (l) { l += '-u'; if (outputCalendar) { l += '-ca-' + outputCalendar; } if (numberingSystem) { l += '-nu-' + numberingSystem; } return l; }); } return locale; } else { return []; } } function mapMonths(f) { var ms = []; for (var i = 1; i <= 12; i++) { var dt = DateTime.utc(2016, i, 1); ms.push(f(dt)); } return ms; } function mapWeekdays(f) { var ms = []; for (var i = 1; i <= 7; i++) { var dt = DateTime.utc(2016, 11, 13 + i); ms.push(f(dt)); } return ms; } function listStuff(loc, length, defaultOK, englishFn, intlFn) { var mode = loc.listingMode(defaultOK); if (mode === 'error') { return null; } else if (mode === 'en') { return englishFn(length); } else { return intlFn(length); } } /** * @private */ var PolyNumberFormatter = function () { function PolyNumberFormatter(opts) { classCallCheck(this, PolyNumberFormatter); this.padTo = opts.padTo || 0; this.round = opts.round || false; } PolyNumberFormatter.prototype.format = function format(i) { var maybeRounded = this.round ? Math.round(i) : i; return Util.padStart(maybeRounded.toString(), this.padTo); }; return PolyNumberFormatter; }(); var PolyDateFormatter = function () { function PolyDateFormatter(dt, intl, opts) { classCallCheck(this, PolyDateFormatter); this.opts = opts; this.hasIntl = Util.hasIntl(); var z = void 0; if (dt.zone.universal && this.hasIntl) { // if we have a fixed-offset zone that isn't actually UTC, // (like UTC+8), we need to make do with just displaying // the time in UTC; the formatter doesn't know how to handle UTC+8 this.dt = dt.offset === 0 ? dt : DateTime.fromMillis(dt.ts + dt.offset * 60 * 1000); z = 'UTC'; } else if (dt.zone.type === 'local') { this.dt = dt; } else { this.dt = dt; z = dt.zone.name; } if (this.hasIntl) { var realIntlOpts = Object.assign({}, this.opts); if (z) { realIntlOpts.timeZone = z; } this.dtf = new Intl.DateTimeFormat(intl, realIntlOpts); } } PolyDateFormatter.prototype.format = function format() { if (this.hasIntl) { return this.dtf.format(this.dt.toJSDate()); } else { var tokenFormat = English.formatString(this.opts), loc = Locale.create('en-US'); return Formatter.create(loc).formatDateTimeFromString(this.dt, tokenFormat); } }; PolyDateFormatter.prototype.formatToParts = function formatToParts() { if (this.hasIntl && Util.hasFormatToParts()) { return this.dtf.formatToParts(this.dt.toJSDate()); } else { // This is kind of a cop out. We actually could do this for English. However, we couldn't do it for intl strings // and IMO it's too weird to have an uncanny valley like that return []; } }; PolyDateFormatter.prototype.resolvedOptions = function resolvedOptions() { if (this.hasIntl) { return this.dtf.resolvedOptions(); } else { return { locale: 'en-US', numberingSystem: 'latn', outputCalendar: 'gregory' }; } }; return PolyDateFormatter; }(); /** * @private */ var Locale = function () { Locale.fromOpts = function fromOpts(opts) { return Locale.create(opts.locale, opts.numberingSystem, opts.outputCalendar, opts.defaultToEN); }; Locale.create = function create(locale, numberingSystem, outputCalendar) { var defaultToEN = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; var specifiedLocale = locale || Settings.defaultLocale, // the system locale is useful for human readable strings but annoying for parsing/formatting known formats localeR = specifiedLocale || (defaultToEN ? 'en-US' : systemLocale()), numberingSystemR = numberingSystem || Settings.defaultNumberingSystem, outputCalendarR = outputCalendar || Settings.defaultOutputCalendar; return new Locale(localeR, numberingSystemR, outputCalendarR, specifiedLocale); }; Locale.resetCache = function resetCache() { sysLocaleCache = null; }; Locale.fromObject = function fromObject() { var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, locale = _ref.locale, numberingSystem = _ref.numberingSystem, outputCalendar = _ref.outputCalendar; return Locale.create(locale, numberingSystem, outputCalendar); }; function Locale(locale, numbering, outputCalendar, specifiedLocale) { classCallCheck(this, Locale); this.locale = locale; this.numberingSystem = numbering; this.outputCalendar = outputCalendar; this.intl = intlConfigString(this.locale, this.numberingSystem, this.outputCalendar); this.weekdaysCache = { format: {}, standalone: {} }; this.monthsCache = { format: {}, standalone: {} }; this.meridiemCache = null; this.eraCache = {}; this.specifiedLocale = specifiedLocale; } // todo: cache me Locale.prototype.listingMode = function listingMode() { var defaultOk = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var hasIntl = Util.hasIntl(), hasFTP = hasIntl && Util.hasFormatToParts(), isActuallyEn = this.locale === 'en' || this.locale.toLowerCase() === 'en-us' || hasIntl && Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith('en-us'), hasNoWeirdness = (this.numberingSystem === null || this.numberingSystem === 'latn') && (this.outputCalendar === null || this.outputCalendar === 'gregory'); if (!hasFTP && !(isActuallyEn && hasNoWeirdness) && !defaultOk) { return 'error'; } else if (!hasFTP || isActuallyEn && hasNoWeirdness) { return 'en'; } else { return 'intl'; } }; Locale.prototype.clone = function clone(alts) { if (!alts || Object.getOwnPropertyNames(alts).length === 0) { return this; } else { return Locale.create(alts.locale || this.specifiedLocale, alts.numberingSystem || this.numberingSystem, alts.outputCalendar || this.outputCalendar, alts.defaultToEN || false); } }; Locale.prototype.redefaultToEN = function redefaultToEN() { var alts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; return this.clone(Object.assign({}, alts, { defaultToEN: true })); }; Locale.prototype.redefaultToSystem = function redefaultToSystem() { var alts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; return this.clone(Object.assign({}, alts, { defaultToEN: false })); }; Locale.prototype.months = function months(length) { var _this = this; var format = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; var defaultOK = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; return listStuff(this, length, defaultOK, English.months, function () { var intl = format ? { month: length, day: 'numeric' } : { month: length }, formatStr = format ? 'format' : 'standalone'; if (!_this.monthsCache[formatStr][length]) { _this.monthsCache[formatStr][length] = mapMonths(function (dt) { return _this.extract(dt, intl, 'month'); }); } return _this.monthsCache[formatStr][length]; }); }; Locale.prototype.weekdays = function weekdays(length) { var _this2 = this; var format = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; var defaultOK = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; return listStuff(this, length, defaultOK, English.weekdays, function () { var intl = format ? { weekday: length, year: 'numeric', month: 'long', day: 'numeric' } : { weekday: length }, formatStr = format ? 'format' : 'standalone'; if (!_this2.weekdaysCache[formatStr][length]) { _this2.weekdaysCache[formatStr][length] = mapWeekdays(function (dt) { return _this2.extract(dt, intl, 'weekday'); }); } return _this2.weekdaysCache[formatStr][length]; }); }; Locale.prototype.meridiems = function meridiems() { var _this3 = this; var defaultOK = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; return listStuff(this, undefined, defaultOK, function () { return English.meridiems; }, function () { // In theory there could be aribitrary day periods. We're gonna assume there are exactly two // for AM and PM. This is probably wrong, but it's makes parsing way easier. if (!_this3.meridiemCache) { var intl = { hour: 'numeric', hour12: true }; _this3.meridiemCache = [DateTime.utc(2016, 11, 13, 9), DateTime.utc(2016, 11, 13, 19)].map(function (dt) { return _this3.extract(dt, intl, 'dayperiod'); }); } return _this3.meridiemCache; }); }; Locale.prototype.eras = function eras(length) { var _this4 = this; var defaultOK = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return listStuff(this, length, defaultOK, English.eras, function () { var intl = { era: length }; // This is utter bullshit. Different calendars are going to define eras totally differently. What I need is the minimum set of dates // to definitely enumerate them. if (!_this4.eraCache[length]) { _this4.eraCache[length] = [DateTime.utc(-40, 1, 1), DateTime.utc(2017, 1, 1)].map(function (dt) { return _this4.extract(dt, intl, 'era'); }); } return _this4.eraCache[length]; }); }; Locale.prototype.extract = function extract(dt, intlOpts, field) { var df = this.dtFormatter(dt, intlOpts), results = df.formatToParts(), matching = results.find(function (m) { return m.type.toLowerCase() === field; }); return matching ? matching.value : null; }; Locale.prototype.numberFormatter = function numberFormatter() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; var intlOpts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; if (Util.hasIntl()) { var realIntlOpts = Object.assign({ useGrouping: false }, intlOpts); if (opts.padTo > 0) { realIntlOpts.minimumIntegerDigits = opts.padTo; } if (opts.round) { realIntlOpts.maximumFractionDigits = 0; } return new Intl.NumberFormat(this.intl, realIntlOpts); } else { return new PolyNumberFormatter(opts); } }; Locale.prototype.dtFormatter = function dtFormatter(dt) { var intlOpts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return new PolyDateFormatter(dt, this.intl, intlOpts); }; Locale.prototype.equals = function equals(other) { return this.locale === other.locale && this.numberingSystem === other.numberingSystem && this.outputCalendar === other.outputCalendar; }; return Locale; }(); var now = function now() { return new Date().valueOf(); }; var defaultZone = null; var defaultLocale = null; var defaultNumberingSystem = null; var defaultOutputCalendar = null; var throwOnInvalid = false; /** * Settings contains static getters and setters that control Luxon's overall behavior. Luxon is a simple library with few options, but the ones it does have live here. */ var Settings = function () { function Settings() { classCallCheck(this, Settings); } /** * Reset Luxon's global caches. Should only be necessary in testing scenarios. * @return {void} */ Settings.resetCaches = function resetCaches() { Locale.resetCache(); }; createClass(Settings, null, [{ key: 'now', /** * Get the callback for returning the current timestamp. * @type {function} */ get: function get$$1() { return now; } /** * Set the callback for returning the current timestamp. * @type {function} */ , set: function set$$1(n) { now = n; } /** * Get the default time zone to create DateTimes in. * @type {string} */ }, { key: 'defaultZoneName', get: function get$$1() { return (defaultZone || LocalZone.instance).name; } /** * Set the default time zone to create DateTimes in. Does not affect existing instances. * @type {string} */ , set: function set$$1(z) { defaultZone = Util.normalizeZone(z); } /** * Get the default time zone object to create DateTimes in. Does not affect existing instances. * @type {Zone} */ }, { key: 'defaultZone', get: function get$$1() { return defaultZone || LocalZone.instance; } /** * Get the default locale to create DateTimes with. Does not affect existing instances. * @type {string} */ }, { key: 'defaultLocale', get: function get$$1() { return defaultLocale; } /** * Set the default locale to create DateTimes with. Does not affect existing instances. * @type {string} */ , set: function set$$1(locale) { defaultLocale = locale; } /** * Get the default numbering system to create DateTimes with. Does not affect existing instances. * @type {string} */ }, { key: 'defaultNumberingSystem', get: function get$$1() { return defaultNumberingSystem; } /** * Set the default numbering system to create DateTimes with. Does not affect existing instances. * @type {string} */ , set: function set$$1(numberingSystem) { defaultNumberingSystem = numberingSystem; } /** * Get the default output calendar to create DateTimes with. Does not affect existing instances. * @type {string} */ }, { key: 'defaultOutputCalendar', get: function get$$1() { return defaultOutputCalendar; } /** * Set the default output calendar to create DateTimes with. Does not affect existing instances. * @type {string} */ , set: function set$$1(outputCalendar) { defaultOutputCalendar = outputCalendar; } /** * Get whether Luxon will throw when it encounters invalid DateTimes, Durations, or Intervals * @type {Zone} */ }, { key: 'throwOnInvalid', get: function get$$1() { return throwOnInvalid; } /** * Set whether Luxon will throw when it encounters invalid DateTimes, Durations, or Intervals * @type {Zone} */ , set: function set$$1(t) { throwOnInvalid = t; } }]); return Settings; }(); /* This is just a junk drawer, containing anything used across multiple classes. Because Luxon is small(ish), this should stay small and we won't worry about splitting it up into, say, parsingUtil.js and basicUtil.js and so on. But they are divided up by feature area. */ /** * @private */ var Util = function () { function Util() { classCallCheck(this, Util); } // TYPES Util.isUndefined = function isUndefined(o) { return typeof o === 'undefined'; }; Util.isNumber = function isNumber(o) { return typeof o === 'number'; }; Util.isString = function isString(o) { return typeof o === 'string'; }; Util.isDate = function isDate(o) { return Object.prototype.toString.call(o) === '[object Date]'; }; // OBJECTS AND ARRAYS Util.maybeArray = function maybeArray(thing) { return Array.isArray(thing) ? thing : [thing]; }; Util.bestBy = function bestBy(arr, by, compare) { if (arr.length === 0) { return undefined; } return arr.reduce(function (best, next) { var pair = [by(next), next]; if (!best) { return pair; } else if (compare.apply(null, [best[0], pair[0]]) === best[0]) { return best; } else { return pair; } }, null)[1]; }; Util.pick = function pick(obj, keys) { return keys.reduce(function (a, k) { a[k] = obj[k]; return a; }, {}); }; // NUMBERS AND STRINGS Util.numberBetween = function numberBetween(thing, bottom, top) { return Util.isNumber(thing) && thing >= bottom && thing <= top; }; Util.padStart = function padStart(input) { var n = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 2; return ('0'.repeat(n) + input).slice(-n); }; Util.parseMillis = function parseMillis(fraction) { if (fraction) { var f = parseFloat('0.' + fraction) * 1000; return Math.round(f); } else { return 0; } }; // DATE BASICS Util.isLeapYear = function isLeapYear(year) { return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0); }; Util.daysInYear = function daysInYear(year) { return Util.isLeapYear(year) ? 366 : 365; }; Util.daysInMonth = function daysInMonth(year, month) { if (month === 2) { return Util.isLeapYear(year) ? 29 : 28; } else { return [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month - 1]; } }; Util.untruncateYear = function untruncateYear(year) { if (year > 99) { return year; } else return year > 60 ? 1900 + year : 2000 + year; }; // PARSING Util.parseZoneInfo = function parseZoneInfo(ts, offsetFormat, locale) { var timeZone = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; var date = new Date(ts), intl = { hour12: false, year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit' }; if (timeZone) { intl.timeZone = timeZone; } var modified = Object.assign({ timeZoneName: offsetFormat }, intl), hasIntl = Util.hasIntl(); if (hasIntl && Util.hasFormatToParts()) { var parsed = new Intl.DateTimeFormat(locale, modified).formatToParts(date).find(function (m) { return m.type.toLowerCase() === 'timezonename'; }); return parsed ? parsed.value : null; } else if (hasIntl) { // this probably doesn't work for all locales var without = new Intl.DateTimeFormat(locale, intl).format(date), included = new Intl.DateTimeFormat(locale, modified).format(date), diffed = included.substring(without.length), trimmed = diffed.replace(/^[, ]+/, ''); return trimmed; } else { return null; } }; // signedOffset('-5', '30') -> -330 Util.signedOffset = function signedOffset(offHourStr, offMinuteStr) { var offHour = parseInt(offHourStr, 10) || 0, offMin = parseInt(offMinuteStr, 10) || 0, offMinSigned = offHour < 0 ? -offMin : offMin; return offHour * 60 + offMinSigned; }; // COERCION Util.friendlyDuration = function friendlyDuration(duration) { if (Util.isNumber(duration)) { return Duration.fromMillis(duration); } else if (duration instanceof Duration) { return duration; } else if (duration instanceof Object) { return Duration.fromObject(duration); } else { throw new InvalidArgumentError('Unknown duration argument'); } }; Util.friendlyDateTime = function friendlyDateTime(dateTimeish) { if (dateTimeish instanceof DateTime) { return dateTimeish; } else if (dateTimeish.valueOf && Util.isNumber(dateTimeish.valueOf())) { return DateTime.fromJSDate(dateTimeish); } else if (dateTimeish instanceof Object) { return DateTime.fromObject(dateTimeish); } else { throw new InvalidArgumentError('Unknown datetime argument'); } }; Util.normalizeZone = function normalizeZone(input) { var offset = void 0; if (Util.isUndefined(input) || input === null) { return Settings.defaultZone; } else if (input instanceof Zone) { return input; } else if (Util.isString(input)) { var lowered = input.toLowerCase(); if (lowered === 'local') return LocalZone.instance;else if (lowered === 'utc') return FixedOffsetZone.utcInstance;else if ((offset = IANAZone.parseGMTOffset(input)) != null) { // handle Etc/GMT-4, which V8 chokes on return FixedOffsetZone.instance(offset); } else if (IANAZone.isValidSpecifier(lowered)) return new IANAZone(input);else return FixedOffsetZone.parseSpecifier(lowered) || InvalidZone.instance; } else if (Util.isNumber(input)) { return FixedOffsetZone.instance(input); } else if ((typeof input === 'undefined' ? 'undefined' : _typeof(input)) === 'object' && input.offset) { // This is dumb, but the instanceof check above doesn't seem to really work // so we're duck checking it return input; } else { return InvalidZone.instance; } }; Util.normalizeObject = function normalizeObject(obj, normalizer) { var ignoreUnknown = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var normalized = {}; for (var u in obj) { if (obj.hasOwnProperty(u)) { var v = obj[u]; if (v !== null && !Util.isUndefined(v) && !Number.isNaN(v)) { var mapped = normalizer(u, ignoreUnknown); if (mapped) { normalized[mapped] = v; } } } } return normalized; }; Util.timeObject = function timeObject(obj) { return Util.pick(obj, ['hour', 'minute', 'second', 'millisecond']); }; // CAPABILITIES Util.hasIntl = function hasIntl() { return typeof Intl !== 'undefined' && Intl.DateTimeFormat; }; Util.hasFormatToParts = function hasFormatToParts() { return !Util.isUndefined(Intl.DateTimeFormat.prototype.formatToParts); }; return Util; }(); /* This file handles parsing for well-specified formats. Here's how it works: * Two things go into parsing: a regex to match with and an extractor to take apart the groups in the match. * An extractor is just a function that takes a regex match array and returns a { year: ..., month: ... } object * parse() does the work of executing the regex and applying the extractor. It takes multiple regex/extractor pairs to try in sequence. * Extractors can take a "cursor" representing the offset in the match to look at. This makes it easy to combine extractors. * combineExtractors() does the work of combining them, keeping track of the cursor through multiple extractions. * Some extractions are super dumb and simpleParse and fromStrings help DRY them. */ function combineRegexes() { for (var _len = arguments.length, regexes = Array(_len), _key = 0; _key < _len; _key++) { regexes[_key] = arguments[_key]; } var full = regexes.reduce(function (f, r) { return f + r.source; }, ''); return RegExp('^' + full + '$'); } function combineExtractors() { for (var _len2 = arguments.length, extractors = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { extractors[_key2] = arguments[_key2]; } return function (m) { return extractors.reduce(function (_ref, ex) { var mergedVals = _ref[0], mergedZone = _ref[1], cursor = _ref[2]; var _ex = ex(m, cursor), val = _ex[0], zone = _ex[1], next = _ex[2]; return [Object.assign(mergedVals, val), mergedZone || zone, next]; }, [{}, null, 1]).slice(0, 2); }; } function parse(s) { if (s == null) { return [null, null]; } for (var _len3 = arguments.length, patterns = Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) { patterns[_key3 - 1] = arguments[_key3]; } for (var _iterator = patterns, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { var _ref3; if (_isArray) { if (_i >= _iterator.length) break; _ref3 = _iterator[_i++]; } else { _i = _iterator.next(); if (_i.done) break; _ref3 = _i.value; } var _ref2 = _ref3; var regex = _ref2[0]; var extractor = _ref2[1]; var m = regex.exec(s); if (m) { return extractor(m); } } return [null, null]; } function simpleParse() { for (var _len4 = arguments.length, keys = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) { keys[_key4] = arguments[_key4]; } return function (match, cursor) { var ret = {}; var i = void 0; for (i = 0; i < keys.length; i++) { ret[keys[i]] = parseInt(match[cursor + i]); } return [ret, null, cursor + i]; }; } // ISO and SQL parsing var offsetRegex = /(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/; var isoTimeBaseRegex = /(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,9}))?)?)?/; var isoTimeRegex = RegExp('' + isoTimeBaseRegex.source + offsetRegex.source + '?'); var isoTimeExtensionRegex = RegExp('(?:T' + isoTimeRegex.source + ')?'); var isoYmdRegex = /([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/; var isoWeekRegex = /(\d{4})-?W(\d\d)-?(\d)/; var isoOrdinalRegex = /(\d{4})-?(\d{3})/; var extractISOWeekData = simpleParse('weekYear', 'weekNumber', 'weekDay'); var extractISOOrdinalData = simpleParse('year', 'ordinal'); var sqlYmdRegex = /(\d{4})-(\d\d)-(\d\d)/; var sqlTimeRegex = RegExp(isoTimeBaseRegex.source + ' ?(?:' + offsetRegex.source + '|([a-zA-Z_]{1,256}/[a-zA-Z_]{1,256}))?'); var sqlTimeExtensionRegex = RegExp('(?: ' + sqlTimeRegex.source + ')?'); function extractISOYmd(match, cursor) { var item = { year: parseInt(match[cursor]), month: parseInt(match[cursor + 1]) || 1, day: parseInt(match[cursor + 2]) || 1 }; return [item, null, cursor + 3]; } function extractISOTime(match, cursor) { var item = { hour: parseInt(match[cursor]) || 0, minute: parseInt(match[cursor + 1]) || 0, second: parseInt(match[cursor + 2]) || 0, millisecond: Util.parseMillis(match[cursor + 3]) }; return [item, null, cursor + 4]; } function extractISOOffset(match, cursor) { var local = !match[cursor] && !match[cursor + 1], fullOffset = Util.signedOffset(match[cursor + 1], match[cursor + 2]), zone = local ? null : FixedOffsetZone.instance(fullOffset); return [{}, zone, cursor + 3]; } function extractIANAZone(match, cursor) { var zone = match[cursor] ? new IANAZone(match[cursor]) : null; return [{}, zone, cursor + 1]; } // ISO duration parsing var isoDuration = /^P(?:(?:(\d{1,9})Y)?(?:(\d{1,9})M)?(?:(\d{1,9})D)?(?:T(?:(\d{1,9})H)?(?:(\d{1,9})M)?(?:(\d{1,9})S)?)?|(\d{1,9})W)$/; function extractISODuration(match) { var yearStr = match[1], monthStr = match[2], dayStr = match[3], hourStr = match[4], minuteStr = match[5], secondStr = match[6], weekStr = match[7]; return { years: parseInt(yearStr), months: parseInt(monthStr), weeks: parseInt(weekStr), days: parseInt(dayStr), hours: parseInt(hourStr), minutes: parseInt(minuteStr), seconds: parseInt(secondStr) }; } // These are a little braindead. EDT *should* tell us that we're in, say, America/New_York // and not just that we're in -240 *right now*. But since I don't think these are used that often // I'm just going to ignore that var obsOffsets = { GMT: 0, EDT: -4 * 60, EST: -5 * 60, CDT: -5 * 60, CST: -6 * 60, MDT: -6 * 60, MST: -7 * 60, PDT: -7 * 60, PST: -8 * 60 }; function fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) { var result = { year: yearStr.length === 2 ? Util.untruncateYear(parseInt(yearStr)) : parseInt(yearStr), month: monthStr.length === 2 ? parseInt(monthStr, 10) : English.monthsShort.indexOf(monthStr) + 1, day: parseInt(dayStr), hour: parseInt(hourStr), minute: parseInt(minuteStr) }; if (secondStr) result.second = parseInt(secondStr); if (weekdayStr) { result.weekday = weekdayStr.length > 3 ? English.weekdaysLong.indexOf(weekdayStr) + 1 : English.weekdaysShort.indexOf(weekdayStr) + 1; } return result; } // RFC 2822/5322 var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/; function extractRFC2822(match) { var weekdayStr = match[1], dayStr = match[2], monthStr = match[3], yearStr = match[4], hourStr = match[5], minuteStr = match[6], secondStr = match[7], obsOffset = match[8], milOffset = match[9], offHourStr = match[10], offMinuteStr = match[11], result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr); var offset = void 0; if (obsOffset) { offset = obsOffsets[obsOffset]; } else if (milOffset) { offset = 0; } else { offset = Util.signedOffset(offHourStr, offMinuteStr); } return [result, new FixedOffsetZone(offset)]; } function preprocessRFC2822(s) { // Remove comments and folding whitespace and replace multiple-spaces with a single space return s.replace(/\([^)]*\)|[\n\t]/g, ' ').replace(/(\s\s+)/g, ' ').trim(); } // http date var rfc1123 = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/; var rfc850 = /^(Monday|Tuesday|Wedsday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/; var ascii = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/; function extractRFC1123Or850(match) { var weekdayStr = match[1], dayStr = match[2], monthStr = match[3], yearStr = match[4], hourStr = match[5], minuteStr = match[6], secondStr = match[7], result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr); return [result, FixedOffsetZone.utcInstance]; } function extractASCII(match) { var weekdayStr = match[1], monthStr = match[2], dayStr = match[3], hourStr = match[4], minuteStr = match[5], secondStr = match[6], yearStr = match[7], result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr); return [result, FixedOffsetZone.utcInstance]; } /** * @private */ var RegexParser = function () { function RegexParser() { classCallCheck(this, RegexParser); } RegexParser.parseISODate = function parseISODate(s) { return parse(s, [combineRegexes(isoYmdRegex, isoTimeExtensionRegex), combineExtractors(extractISOYmd, extractISOTime, extractISOOffset)], [combineRegexes(isoWeekRegex, isoTimeExtensionRegex), combineExtractors(extractISOWeekData, extractISOTime, extractISOOffset)], [combineRegexes(isoOrdinalRegex, isoTimeExtensionRegex), combineExtractors(extractISOOrdinalData, extractISOTime)], [combineRegexes(isoTimeRegex), combineExtractors(extractISOTime, extractISOOffset)]); }; RegexParser.parseRFC2822Date = function parseRFC2822Date(s) { return parse(preprocessRFC2822(s), [rfc2822, extractRFC2822]); }; RegexParser.parseHTTPDate = function parseHTTPDate(s) { return parse(s, [rfc1123, extractRFC1123Or850], [rfc850, extractRFC1123Or850], [ascii, extractASCII]); }; RegexParser.parseISODuration = function parseISODuration(s) { return parse(s, [isoDuration, extractISODuration]); }; RegexParser.parseSQL = function parseSQL(s) { return parse(s, [combineRegexes(sqlYmdRegex, sqlTimeExtensionRegex), combineExtractors(extractISOYmd, extractISOTime, extractISOOffset, extractIANAZone)], [combineRegexes(sqlTimeRegex), combineExtractors(extractISOTime, extractISOOffset, extractIANAZone)]); }; return RegexParser; }(); var INVALID$1 = 'Invalid Duration'; // unit conversion constants var lowOrderMatrix = { weeks: { days: 7, hours: 7 * 24, minutes: 7 * 24 * 60, seconds: 7 * 24 * 60 * 60, milliseconds: 7 * 24 * 60 * 60 * 1000 }, days: { hours: 24, minutes: 24 * 60, seconds: 24 * 60 * 60, milliseconds: 24 * 60 * 60 * 1000 }, hours: { minutes: 60, seconds: 60 * 60, milliseconds: 60 * 60 * 1000 }, minutes: { seconds: 60, milliseconds: 60 * 1000 }, seconds: { milliseconds: 1000 } }; var casualMatrix = Object.assign({ years: { months: 12, weeks: 52, days: 365, hours: 365 * 24, minutes: 365 * 24 * 60, seconds: 365 * 24 * 60 * 60, milliseconds: 365 * 24 * 60 * 60 * 1000 }, months: { weeks: 4, days: 30, hours: 30 * 24, minutes: 30 * 24 * 60, seconds: 30 * 24 * 60 * 60, milliseconds: 30 * 24 * 60 * 60 * 1000 } }, lowOrderMatrix); var daysInYearAccurate = 146097.0 / 400; var daysInMonthAccurate = 146097.0 / 4800; var accurateMatrix = Object.assign({ years: { months: 12, weeks: daysInYearAccurate / 7, days: daysInYearAccurate, hours: daysInYearAccurate * 24, minutes: daysInYearAccurate * 24 * 60, seconds: daysInYearAccurate * 24 * 60 * 60, milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1000 }, months: { weeks: daysInMonthAccurate / 7, days: daysInMonthAccurate, hours: daysInYearAccurate * 24, minutes: daysInYearAccurate * 24 * 60, seconds: daysInYearAccurate * 24 * 60 * 60, milliseconds: daysInYearAccurate * 24 * 60 * 60 * 1000 } }, lowOrderMatrix); // units ordered by size var orderedUnits$1 = ['years', 'months', 'weeks', 'days', 'hours', 'minutes', 'seconds', 'milliseconds']; // clone really means "create another instance just like this one, but with these changes" function clone$1(dur, alts) { var clear = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; // deep merge for vals var conf = { values: clear ? alts.values : Object.assign({}, dur.values, alts.values || {}), loc: dur.loc.clone(alts.loc), conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy }; return new Duration(conf); } // some functions really care about the absolute value of a duration, so combined with // normalize() this tells us whether this duration is positive or negative function isHighOrderNegative(obj) { // only rule is that the highest-order part must be non-negative for (var _iterator = orderedUnits$1, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { var _ref; if (_isArray) { if (_i >= _iterator.length) break; _ref = _iterator[_i++]; } else { _i = _iterator.next(); if (_i.done) break; _ref = _i.value; } var k = _ref; if (obj[k]) return obj[k] < 0; } return false; } /** * A Duration object represents a period of time, like "2 months" or "1 day, 1 hour". Conceptually, it's just a map of units to their quantities, accompanied by some additional configuration and methods for creating, parsing, interrogating, transforming, and formatting them. They can be used on their own or in conjunction with other Luxon types; for example, you can use {@link DateTime.plus} to add a Duration object to a DateTime, producing another DateTime. * * Here is a brief overview of commonly used methods and getters in Duration: * * * **Creation** To create a Duration, use {@link Duration.fromMillis}, {@link Duration.fromObject}, or {@link Duration.fromISO}. * * **Unit values** See the {@link years}, {@link months}, {@link weeks}, {@link days}, {@link hours}, {@link minutes}, {@link seconds}, {@link milliseconds} accessors. * * **Configuration** See {@link locale} and {@link numberingSystem} accessors. * * **Transformation** To create new Durations out of old ones use {@link plus}, {@link minus}, {@link normalize}, {@link set}, {@link reconfigure}, {@link shiftTo}, and {@link negate}. * * **Output** To convert the Duration into other representations, see {@link as}, {@link toISO}, {@link toFormat}, and {@link toJSON} * * There's are more methods documented below. In addition, for more information on subtler topics like internationalization and validity, see the external documentation. */ var Duration = function () { /** * @private */ function Duration(config) { classCallCheck(this, Duration); var accurate = config.conversionAccuracy === 'longterm' || false; /** * @access private */ this.values = config.values; /** * @access private */ this.loc = config.loc || Locale.create(); /** * @access private */ this.conversionAccuracy = accurate ? 'longterm' : 'casual'; /** * @access private */ this.invalid = config.invalidReason || null; /** * @access private */ this.matrix = accurate ? accurateMatrix : casualMatrix; } /** * Create Duration from a number of milliseconds. * @param {number} count of milliseconds * @param {Object} opts - options for parsing * @param {string} [obj.locale='en-US'] - the locale to use * @param {string} obj.numberingSystem - the numbering system to use * @param {string} [obj.conversionAccuracy='casual'] - the conversion system to use * @return {Duration} */ Duration.fromMillis = function fromMillis(count, opts) { return Duration.fromObject(Object.assign({ milliseconds: count }, opts)); }; /** * Create an Duration from a Javascript object with keys like 'years' and 'hours'. * @param {Object} obj - the object to create the DateTime from * @param {number} obj.years * @param {number} obj.months * @param {number} obj.weeks * @param {number} obj.days * @param {number} obj.hours * @param {number} obj.minutes * @param {number} obj.seconds * @param {number} obj.milliseconds * @param {string} [obj.locale='en-US'] - the locale to use * @param {string} obj.numberingSystem - the numbering system to use * @param {string} [obj.conversionAccuracy='casual'] - the conversion system to use * @return {Duration} */ Duration.fromObject = function fromObject(obj) { return new Duration({ values: Util.normalizeObject(obj, Duration.normalizeUnit, true), loc: Locale.fromObject(obj), conversionAccuracy: obj.conversionAccuracy }); }; /** * Create a Duration from an ISO 8601 duration string. * @param {string} text - text to parse * @param {Object} opts - options for parsing * @param {string} [obj.locale='en-US'] - the locale to use * @param {string} obj.numberingSystem - the numbering system to use * @param {string} [obj.conversionAccuracy='casual'] - the conversion system to use * @see https://en.wikipedia.org/wiki/ISO_8601#Durations * @example Duration.fromISO('P3Y6M4DT12H30M5S').toObject() //=> { years: 3, months: 6, day: 4, hours: 12, minutes: 30, seconds: 5 } * @example Duration.fromISO('PT23H').toObject() //=> { hours: 23 } * @example Duration.fromISO('P5Y3M').toObject() //=> { years: 5, months: 3 } * @return {Duration} */ Duration.fromISO = function fromISO(text, opts) { var obj = Object.assign(RegexParser.parseISODuration(text), opts); return Duration.fromObject(obj); }; /** * Create an invalid Duration. * @param {string} reason - reason this is invalid * @return {Duration} */ Duration.invalid = function invalid(reason) { if (!reason) { throw new InvalidArgumentError('need to specify a reason the Duration is invalid'); } if (Settings.throwOnInvalid) { throw new InvalidDurationError(reason); } else { return new Duration({ invalidReason: reason }); } }; /** * @private */ Duration.normalizeUnit = function normalizeUnit(unit) { var ignoreUnknown = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; var normalized = { year: 'years', years: 'years', month: 'months', months: 'months', week: 'weeks', weeks: 'weeks', day: 'days', days: 'days', hour: 'hours', hours: 'hours', minute: 'minutes', minutes: 'minutes', second: 'seconds', seconds: 'seconds', millisecond: 'milliseconds', milliseconds: 'milliseconds' }[unit ? unit.toLowerCase() : unit]; if (!ignoreUnknown && !normalized) throw new InvalidUnitError(unit); return normalized; }; /** * Get the locale of a Duration, such 'en-GB' * @return {string} */ /** * Returns a string representation of this Duration formatted according to the specified format string. * @param {string} fmt - the format string * @param {object} opts - options * @param {boolean} opts.round - round numerical values * @return {string} */ Duration.prototype.toFormat = function toFormat(fmt) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return this.isValid ? Formatter.create(this.loc, opts).formatDurationFromString(this, fmt) : INVALID$1; }; /** * Returns a Javascript object with this Duration's values. * @param opts - options for generating the object * @param {boolean} [opts.includeConfig=false] - include configuration attributes in the output * @example Duration.fromObject({ years: 1, days: 6, seconds: 2 }).toObject() //=> { years: 1, days: 6, seconds: 2 } * @return {object} */ Duration.prototype.toObject = function toObject() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; if (!this.isValid) return {}; var base = Object.assign({}, this.values); if (opts.includeConfig) { base.conversionAccuracy = this.conversionAccuracy; base.numberingSystem = this.loc.numberingSystem; base.locale = this.loc.locale; } return base; }; /** * Returns an ISO 8601-compliant string representation of this Duration. * @see https://en.wikipedia.org/wiki/ISO_8601#Durations * @example Duration.fromObject({ years: 3, seconds: 45 }).toISO() //=> 'P3YT45S' * @example Duration.fromObject({ months: 4, seconds: 45 }).toISO() //=> 'P4MT45S' * @example Duration.fromObject({ months: 5 }).toISO() //=> 'P5M' * @example Duration.fromObject({ minutes: 5 }).toISO() //=> 'PT5M' * @return {string} */ Duration.prototype.toISO = function toISO() { // we could use the formatter, but this is an easier way to get the minimum string if (!this.isValid) return null; var s = 'P', norm = this.normalize(); // ISO durations are always positive, so take the absolute value norm = isHighOrderNegative(norm.values) ? norm.negate() : norm; if (norm.years > 0) s += norm.years + 'Y'; if (norm.months > 0) s += norm.months + 'M'; if (norm.days > 0 || norm.weeks > 0) s += norm.days + norm.weeks * 7 + 'D'; if (norm.hours > 0 || norm.minutes > 0 || norm.seconds > 0 || norm.milliseconds > 0) s += 'T'; if (norm.hours > 0) s += norm.hours + 'H'; if (norm.minutes > 0) s += norm.minutes + 'M'; if (norm.seconds > 0) s += norm.seconds + 'S'; return s; }; /** * Returns an ISO 8601 representation of this Duration appropriate for use in JSON. * @return {string} */ Duration.prototype.toJSON = function toJSON() { return this.toISO(); }; /** * Returns an ISO 8601 representation of this Duration appropriate for use in debugging. * @return {string} */ Duration.prototype.toString = function toString() { return this.toISO(); }; /** * Returns a string representation of this Duration appropriate for the REPL. * @return {string} */ Duration.prototype.inspect = function inspect() { if (this.isValid) { return 'Duration {\n values: ' + this.toISO() + ',\n locale: ' + this.locale + ',\n conversionAccuracy: ' + this.conversionAccuracy + ' }'; } else { return 'Duration { Invalid, reason: ' + this.invalidReason + ' }'; } }; /** * Make this Duration longer by the specified amount. Return a newly-constructed Duration. * @param {Duration|number|object} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() * @return {Duration} */ Duration.prototype.plus = function plus(duration) { if (!this.isValid) return this; var dur = Util.friendlyDuration(duration), result = {}; for (var _iterator2 = orderedUnits$1, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) { var _ref2; if (_isArray2) { if (_i2 >= _iterator2.length) break; _ref2 = _iterator2[_i2++]; } else { _i2 = _iterator2.next(); if (_i2.done) break; _ref2 = _i2.value; } var k = _ref2; var val = dur.get(k) + this.get(k); if (val !== 0) { result[k] = val; } } return clone$1(this, { values: result }, true); }; /** * Make this Duration shorter by the specified amount. Return a newly-constructed Duration. * @param {Duration|number|object} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() * @return {Duration} */ Duration.prototype.minus = function minus(duration) { if (!this.isValid) return this; var dur = Util.friendlyDuration(duration); return this.plus(dur.negate()); }; /** * Get the value of unit. * @param {string} unit - a unit such as 'minute' or 'day' * @example Duration.fromObject({years: 2, days: 3}).years //=> 2 * @example Duration.fromObject({years: 2, days: 3}).months //=> 0 * @example Duration.fromObject({years: 2, days: 3}).days //=> 3 * @return {number} */ Duration.prototype.get = function get$$1(unit) { return this[Duration.normalizeUnit(unit)]; }; /** * "Set" the values of specified units. Return a newly-constructed Duration. * @param {object} values - a mapping of units to numbers * @example dur.set({ years: 2017 }) * @example dur.set({ hours: 8, minutes: 30 }) * @return {Duration} */ Duration.prototype.set = function set$$1(values) { var mixed = Object.assign(this.values, Util.normalizeObject(values, Duration.normalizeUnit)); return clone$1(this, { values: mixed }); }; /** * "Set" the locale and/or numberingSystem. Returns a newly-constructed Duration. * @example dur.reconfigure({ locale: 'en-GB' }) * @return {Duration} */ Duration.prototype.reconfigure = function reconfigure() { var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, locale = _ref3.locale, numberingSystem = _ref3.numberingSystem, conversionAccuracy = _ref3.conversionAccuracy; var loc = this.loc.clone({ locale: locale, numberingSystem: numberingSystem }), opts = { loc: loc }; if (conversionAccuracy) { opts.conversionAccuracy = conversionAccuracy; } return clone$1(this, opts); }; /** * Return the length of the duration in the specified unit. * @param {string} unit - a unit such as 'minutes' or 'days' * @example Duration.fromObject({years: 1}).as('days') //=> 365 * @example Duration.fromObject({years: 1}).as('months') //=> 12 * @example Duration.fromObject({hours: 60}).as('days') //=> 2.5 * @return {number} */ Duration.prototype.as = function as(unit) { return this.isValid ? this.shiftTo(unit).get(unit) : NaN; }; /** * Reduce this Duration to its canonical representation in its current units. * @example Duration.fromObject({ years: 2, days: 5000 }).normalize().toObject() //=> { years: 15, days: 255 } * @example Duration.fromObject({ hours: 12, minutes: -45 }).normalize().toObject() //=> { hours: 11, minutes: 15 } * @return {Duration} */ Duration.prototype.normalize = function normalize() { if (!this.isValid) return this; var neg = isHighOrderNegative(this.values), dur = neg ? this.negate() : this, shifted = dur.shiftTo.apply(dur, Object.keys(this.values)); return neg ? shifted.negate() : shifted; }; /** * Convert this Duration into its representation in a different set of units. * @example Duration.fromObject({ hours: 1, seconds: 30 }).shiftTo('minutes', 'milliseconds').toObject() //=> { minutes: 60, milliseconds: 30000 } * @return {Duration} */ Duration.prototype.shiftTo = function shiftTo() { for (var _len = arguments.length, units = Array(_len), _key = 0; _key < _len; _key++) { units[_key] = arguments[_key]; } if (!this.isValid) return this; if (units.length === 0) { return this; } units = units.map(function (u) { return Duration.normalizeUnit(u); }); var built = {}, accumulated = {}, vals = this.toObject(); var lastUnit = void 0; for (var _iterator3 = orderedUnits$1, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) { var _ref4; if (_isArray3) { if (_i3 >= _iterator3.length) break; _ref4 = _iterator3[_i3++]; } else { _i3 = _iterator3.next(); if (_i3.done) break; _ref4 = _i3.value; } var k = _ref4; if (units.indexOf(k) >= 0) { lastUnit = k; var own = 0; // anything we haven't boiled down yet should get boiled to this unit for (var ak in accumulated) { if (accumulated.hasOwnProperty(ak)) { own += this.matrix[ak][k] * accumulated[ak]; accumulated[ak] = 0; } } // plus anything that's already in this unit if (Util.isNumber(vals[k])) { own += vals[k]; } var i = Math.trunc(own); built[k] = i; accumulated[k] = own - i; // plus anything further down the chain that should be rolled up in to this for (var down in vals) { if (orderedUnits$1.indexOf(down) > orderedUnits$1.indexOf(k)) { var conv = this.matrix[k][down], added = Math.floor(vals[down] / conv); built[k] += added; vals[down] -= added * conv; } } // otherwise, keep it in the wings to boil it later } else if (Util.isNumber(vals[k])) { accumulated[k] = vals[k]; } } // anything leftover becomes the decimal for the last unit if (lastUnit) { for (var key in accumulated) { if (accumulated.hasOwnProperty(key)) { if (accumulated[key] > 0) { built[lastUnit] += key === lastUnit ? accumulated[key] : accumulated[key] / this.matrix[lastUnit][key]; } } } } return clone$1(this, { values: built }, true); }; /** * Return the negative of this Duration. * @example Duration.fromObject({ hours: 1, seconds: 30 }).negate().toObject() //=> { hours: -1, seconds: -30 } * @return {Duration} */ Duration.prototype.negate = function negate() { if (!this.isValid) return this; var negated = {}; for (var _iterator4 = Object.keys(this.values), _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) { var _ref5; if (_isArray4) { if (_i4 >= _iterator4.length) break; _ref5 = _iterator4[_i4++]; } else { _i4 = _iterator4.next(); if (_i4.done) break; _ref5 = _i4.value; } var k = _ref5; negated[k] = -this.values[k]; } return clone$1(this, { values: negated }, true); }; /** * Get the years. * @return {number} */ /** * Equality check * Two Durations are equal iff they have the same units and the same values for each unit. * @param {Duration} other * @return {boolean} */ Duration.prototype.equals = function equals(other) { if (!this.isValid || !other.isValid) { return false; } if (!this.loc.equals(other.loc)) { return false; } for (var _iterator5 = orderedUnits$1, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) { var _ref6; if (_isArray5) { if (_i5 >= _iterator5.length) break; _ref6 = _iterator5[_i5++]; } else { _i5 = _iterator5.next(); if (_i5.done) break; _ref6 = _i5.value; } var u = _ref6; if (this.values[u] !== other.values[u]) { return false; } } return true; }; createClass(Duration, [{ key: 'locale', get: function get$$1() { return this.loc.locale; } /** * Get the numbering system of a Duration, such 'beng'. The numbering system is used when formatting the Duration * * @return {string} */ }, { key: 'numberingSystem', get: function get$$1() { return this.loc.numberingSystem; } }, { key: 'years', get: function get$$1() { return this.isValid ? this.values.years || 0 : NaN; } /** * Get the months. * @return {number} */ }, { key: 'months', get: function get$$1() { return this.isValid ? this.values.months || 0 : NaN; } /** * Get the weeks * @return {number} */ }, { key: 'weeks', get: function get$$1() { return this.isValid ? this.values.weeks || 0 : NaN; } /** * Get the days. * @return {number} */ }, { key: 'days', get: function get$$1() { return this.isValid ? this.values.days || 0 : NaN; } /** * Get the hours. * @return {number} */ }, { key: 'hours', get: function get$$1() { return this.isValid ? this.values.hours || 0 : NaN; } /** * Get the minutes. * @return {number} */ }, { key: 'minutes', get: function get$$1() { return this.isValid ? this.values.minutes || 0 : NaN; } /** * Get the seconds. * @return {number} */ }, { key: 'seconds', get: function get$$1() { return this.isValid ? this.values.seconds || 0 : NaN; } /** * Get the milliseconds. * @return {number} */ }, { key: 'milliseconds', get: function get$$1() { return this.isValid ? this.values.milliseconds || 0 : NaN; } /** * Returns whether the Duration is invalid. Invalid durations are returned by diff operations * on invalid DateTimes or Intervals. * @return {boolean} */ }, { key: 'isValid', get: function get$$1() { return this.invalidReason === null; } /** * Returns an explanation of why this Duration became invalid, or null if the Duration is valid * @return {string} */ }, { key: 'invalidReason', get: function get$$1() { return this.invalid; } }]); return Duration; }(); var INVALID$2 = 'Invalid Interval'; // checks if the start is equal to or before the end function validateStartEnd(start, end) { return !!start && !!end && start.isValid && end.isValid && start <= end; } /** * An Interval object represents a half-open interval of time, where each endpoint is a {@link DateTime}. Conceptually, it's a container for those two endpoints, accompanied by methods for creating, parsing, interrogating, comparing, transforming, and formatting them. * * Here is a brief overview of the most commonly used methods and getters in Interval: * * * **Creation** To create an Interval, use {@link fromDateTimes}, {@link after}, {@link before}, or {@link fromISO}. * * **Accessors** Use {@link start} and {@link end} to get the start and end. * * **Interrogation** To analyze the Interval, use {@link count}, {@link length}, {@link hasSame}, {@link contains}, {@link isAfter}, or {@link isBefore}. * * **Transformation** To create other Intervals out of this one, use {@link set}, {@link splitAt}, {@link splitBy}, {@link divideEqually}, {@link merge}, {@link xor}, {@link union}, {@link intersection}, or {@link difference}. * * **Comparison** To compare this Interval to another one, use {@link equals}, {@link overlaps}, {@link abutsStart}, {@link abutsEnd}, {@link engulfs} * * **Output*** To convert the Interval into other representations, see {@link toString}, {@link toISO}, {@link toFormat}, and {@link toDuration}. */ var Interval = function () { /** * @private */ function Interval(config) { classCallCheck(this, Interval); /** * @access private */ this.s = config.start; /** * @access private */ this.e = config.end; /** * @access private */ this.invalid = config.invalidReason || null; } /** * Create an invalid Interval. * @return {Interval} */ Interval.invalid = function invalid(reason) { if (!reason) { throw new InvalidArgumentError('need to specify a reason the DateTime is invalid'); } if (Settings.throwOnInvalid) { throw new InvalidIntervalError(reason); } else { return new Interval({ invalidReason: reason }); } }; /** * Create an Interval from a start DateTime and an end DateTime. Inclusive of the start but not the end. * @param {DateTime|object|Date} start * @param {DateTime|object|Date} end * @return {Interval} */ Interval.fromDateTimes = function fromDateTimes(start, end) { var builtStart = Util.friendlyDateTime(start), builtEnd = Util.friendlyDateTime(end); return new Interval({ start: builtStart, end: builtEnd, invalidReason: validateStartEnd(builtStart, builtEnd) ? null : 'invalid endpoints' }); }; /** * Create an Interval from a start DateTime and a Duration to extend to. * @param {DateTime|object|Date} start * @param {Duration|number|object} duration - the length of the Interval. * @return {Interval} */ Interval.after = function after(start, duration) { var dur = Util.friendlyDuration(duration), dt = Util.friendlyDateTime(start); return Interval.fromDateTimes(dt, dt.plus(dur)); }; /** * Create an Interval from an end DateTime and a Duration to extend backwards to. * @param {DateTime|object|Date} end * @param {Duration|number|object} duration - the length of the Interval. * @return {Interval} */ Interval.before = function before(end, duration) { var dur = Util.friendlyDuration(duration), dt = Util.friendlyDateTime(end); return Interval.fromDateTimes(dt.minus(dur), dt); }; /** * Create an Interval from an ISO 8601 string * @param {string} string - the ISO string to parse * @param {object} opts - options to pass {@see DateTime.fromISO} * @return {Interval} */ Interval.fromISO = function fromISO(string, opts) { if (string) { var _string$split = string.split(/\//), s = _string$split[0], e = _string$split[1]; if (s && e) { return Interval.fromDateTimes(DateTime.fromISO(s, opts), DateTime.fromISO(e, opts)); } } return Interval.invalid('invalid ISO format'); }; /** * Returns the start of the Interval * @return {DateTime} */ /** * Returns the length of the Interval in the specified unit. * @param {string} unit - the unit (such as 'hours' or 'days') to return the length in. * @return {number} */ Interval.prototype.length = function length() { var unit = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'milliseconds'; return this.isValid ? this.toDuration.apply(this, [unit]).get(unit) : NaN; }; /** * Returns the count of minutes, hours, days, months, or years included in the Interval, even in part. * Unlike {@link length} this counts sections of the calendar, not periods of time, e.g. specifying 'day' * asks 'what dates are included in this interval?', not 'how many days long is this interval?' * @param {string} [unit='milliseconds'] - the unit of time to count. * @return {number} */ Interval.prototype.count = function count() { var unit = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'milliseconds'; if (!this.isValid) return NaN; var start = this.start.startOf(unit), end = this.end.startOf(unit); return Math.floor(end.diff(start, unit).get(unit)) + 1; }; /** * Returns whether this Interval's start and end are both in the same unit of time * @param {string} unit - the unit of time to check sameness on * @return {boolean} */ Interval.prototype.hasSame = function hasSame(unit) { return this.isValid ? this.e.minus(1).hasSame(this.s, unit) : false; }; /** * Return whether this Interval has the same start and end DateTimes. * @return {boolean} */ Interval.prototype.isEmpty = function isEmpty() { return this.s.valueOf() === this.e.valueOf(); }; /** * Return whether this Interval's start is after the specified DateTime. * @param {DateTime} dateTime * @return {boolean} */ Interval.prototype.isAfter = function isAfter(dateTime) { if (!this.isValid) return false; return this.s > dateTime; }; /** * Return whether this Interval's end is before the specified DateTime. * @param {Datetime} dateTime * @return {boolean} */ Interval.prototype.isBefore = function isBefore(dateTime) { if (!this.isValid) return false; return this.e.plus(1) < dateTime; }; /** * Return whether this Interval contains the specified DateTime. * @param {DateTime} dateTime * @return {boolean} */ Interval.prototype.contains = function contains(dateTime) { if (!this.isValid) return false; return this.s <= dateTime && this.e > dateTime; }; /** * "Sets" the start and/or end dates. Returns a newly-constructed Interval. * @param {object} values - the values to set * @param {DateTime} values.start - the starting DateTime * @param {DateTime} values.end - the ending DateTime * @return {Interval} */ Interval.prototype.set = function set$$1() { var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, start = _ref.start, end = _ref.end; if (!this.isValid) return this; return Interval.fromDateTimes(start || this.s, end || this.e); }; /** * Split this Interval at each of the specified DateTimes * @param {...DateTimes} dateTimes - the unit of time to count. * @return {[Interval]} */ Interval.prototype.splitAt = function splitAt() { if (!this.isValid) return []; for (var _len = arguments.length, dateTimes = Array(_len), _key = 0; _key < _len; _key++) { dateTimes[_key] = arguments[_key]; } var sorted = dateTimes.map(Util.friendlyDateTime).sort(), results = []; var s = this.s, i = 0; while (s < this.e) { var added = sorted[i] || this.e, next = +added > +this.e ? this.e : added; results.push(Interval.fromDateTimes(s, next)); s = next; i += 1; } return results; }; /** * Split this Interval into smaller Intervals, each of the specified length. * Left over time is grouped into a smaller interval * @param {Duration|number|object} duration - The length of each resulting interval. * @return {[Interval]} */ Interval.prototype.splitBy = function splitBy(duration) { if (!this.isValid) return []; var dur = Util.friendlyDuration(duration), results = []; var s = this.s, added = void 0, next = void 0; while (s < this.e) { added = s.plus(dur); next = +added > +this.e ? this.e : added; results.push(Interval.fromDateTimes(s, next)); s = next; } return results; }; /** * Split this Interval into the specified number of smaller intervals. * @param {number} numberOfParts - The number of Intervals to divide the Interval into. * @return {[Interval]} */ Interval.prototype.divideEqually = function divideEqually(numberOfParts) { if (!this.isValid) return []; return this.splitBy(this.length() / numberOfParts).slice(0, numberOfParts); }; /** * Return whether this Interval overlaps with the specified Interval * @param {Interval} other * @return {boolean} */ Interval.prototype.overlaps = function overlaps(other) { return this.e > other.s && this.s < other.e; }; /** * Return whether this Interval's end is adjacent to the specified Interval's start. * @param {Interval} other * @return {boolean} */ Interval.prototype.abutsStart = function abutsStart(other) { if (!this.isValid) return false; return +this.e === +other.s; }; /** * Return whether this Interval's start is adjacent to the specified Interval's end. * @param {Interval} other * @return {boolean} */ Interval.prototype.abutsEnd = function abutsEnd(other) { if (!this.isValid) return false; return +other.e === +this.s; }; /** * Return whether this Interval engulfs the start and end of the specified Interval. * @param {Interval} other * @return {boolean} */ Interval.prototype.engulfs = function engulfs(other) { if (!this.isValid) return false; return this.s <= other.s && this.e >= other.e; }; /** * Return whether this Interval has the same start and end as the specified Interval. * @param {Interval} other * @return {boolean} */ Interval.prototype.equals = function equals(other) { return this.s.equals(other.s) && this.e.equals(other.e); }; /** * Return an Interval representing the intersection of this Interval and the specified Interval. * Specifically, the resulting Interval has the maximum start time and the minimum end time of the two Intervals. * Returns null if the intersection is empty, i.e., the intervals don't intersect. * @param {Interval} other * @return {Interval} */ Interval.prototype.intersection = function intersection(other) { if (!this.isValid) return this; var s = this.s > other.s ? this.s : other.s, e = this.e < other.e ? this.e : other.e; if (s > e) { return null; } else { return Interval.fromDateTimes(s, e); } }; /** * Return an Interval representing the union of this Interval and the specified Interval. * Specifically, the resulting Interval has the minimum start time and the maximum end time of the two Intervals. * @param {Interval} other * @return {Interval} */ Interval.prototype.union = function union(other) { if (!this.isValid) return this; var s = this.s < other.s ? this.s : other.s, e = this.e > other.e ? this.e : other.e; return Interval.fromDateTimes(s, e); }; /** * Merge an array of Intervals into a equivalent minimal set of Intervals. * Combines overlapping and adjacent Intervals. * @param {[Interval]} intervals * @return {[Interval]} */ Interval.merge = function merge(intervals) { var _intervals$sort$reduc = intervals.sort(function (a, b) { return a.s - b.s; }).reduce(function (_ref2, item) { var sofar = _ref2[0], current = _ref2[1]; if (!current) { return [sofar, item]; } else if (current.overlaps(item) || current.abutsStart(item)) { return [sofar, current.union(item)]; } else { return [sofar.concat([current]), item]; } }, [[], null]), found = _intervals$sort$reduc[0], final = _intervals$sort$reduc[1]; if (final) { found.push(final); } return found; }; /** * Return an array of Intervals representing the spans of time that only appear in one of the specified Intervals. * @param {[Interval]} intervals * @return {[Interval]} */ Interval.xor = function xor(intervals) { var _Array$prototype; var start = null, currentCount = 0; var results = [], ends = intervals.map(function (i) { return [{ time: i.s, type: 's' }, { time: i.e, type: 'e' }]; }), flattened = (_Array$prototype = Array.prototype).concat.apply(_Array$prototype, ends), arr = flattened.sort(function (a, b) { return a.time - b.time; }); for (var _iterator = arr, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { var _ref3; if (_isArray) { if (_i >= _iterator.length) break; _ref3 = _iterator[_i++]; } else { _i = _iterator.next(); if (_i.done) break; _ref3 = _i.value; } var i = _ref3; currentCount += i.type === 's' ? 1 : -1; if (currentCount === 1) { start = i.time; } else { if (start && +start !== +i.time) { results.push(Interval.fromDateTimes(start, i.time)); } start = null; } } return Interval.merge(results); }; /** * Return an Interval representing the span of time in this Interval that doesn't overlap with any of the specified Intervals. * @param {...Interval} intervals * @return {Interval} */ Interval.prototype.difference = function difference() { var _this = this; for (var _len2 = arguments.length, intervals = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { intervals[_key2] = arguments[_key2]; } return Interval.xor([this].concat(intervals)).map(function (i) { return _this.intersection(i); }).filter(function (i) { return i && !i.isEmpty(); }); }; /** * Returns a string representation of this Interval appropriate for debugging. * @return {string} */ Interval.prototype.toString = function toString() { if (!this.isValid) return INVALID$2; return '[' + this.s.toISO() + ' \u2013 ' + this.e.toISO() + ')'; }; /** * Returns a string representation of this Interval appropriate for the REPL. * @return {string} */ Interval.prototype.inspect = function inspect() { if (this.isValid) { return 'Interval {\n start: ' + this.start.toISO() + ',\n end: ' + this.end.toISO() + ',\n zone: ' + this.start.zone.name + ',\n locale: ' + this.start.locale + ' }'; } else { return 'Interval { Invalid, reason: ' + this.invalidReason + ' }'; } }; /** * Returns an ISO 8601-compliant string representation of this Interval. * @see https://en.wikipedia.org/wiki/ISO_8601#Time_intervals * @param {object} opts - The same options as {@link DateTime.toISO} * @return {string} */ Interval.prototype.toISO = function toISO(opts) { if (!this.isValid) return INVALID$2; return this.s.toISO(opts) + '/' + this.e.toISO(opts); }; /** * Returns a string representation of this Interval formatted according to the specified format string. * @param {string} dateFormat - the format string. This string formats the start and end time. See {@link DateTime.toFormat} for details. * @param {object} opts - options * @param {string} [opts.separator = ' – '] - a separator to place between the start and end representations * @return {string} */ Interval.prototype.toFormat = function toFormat(dateFormat) { var _ref4 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref4$separator = _ref4.separator, separator = _ref4$separator === undefined ? ' – ' : _ref4$separator; if (!this.isValid) return INVALID$2; return '' + this.s.toFormat(dateFormat) + separator + this.e.toFormat(dateFormat); }; /** * Return a Duration representing the time spanned by this interval. * @param {string|string[]} [unit=['milliseconds']] - the unit or units (such as 'hours' or 'days') to include in the duration. * @param {Object} opts - options that affect the creation of the Duration * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @example Interval.fromDateTimes(dt1, dt2).toDuration().toObject() //=> { milliseconds: 88489257 } * @example Interval.fromDateTimes(dt1, dt2).toDuration('days').toObject() //=> { days: 1.0241812152777778 } * @example Interval.fromDateTimes(dt1, dt2).toDuration(['hours', 'minutes']).toObject() //=> { hours: 24, minutes: 34.82095 } * @example Interval.fromDateTimes(dt1, dt2).toDuration(['hours', 'minutes', 'seconds']).toObject() //=> { hours: 24, minutes: 34, seconds: 49.257 } * @example Interval.fromDateTimes(dt1, dt2).toDuration('seconds').toObject() //=> { seconds: 88489.257 } * @return {Duration} */ Interval.prototype.toDuration = function toDuration(unit, opts) { if (!this.isValid) { return Duration.invalid(this.invalidReason); } return this.e.diff(this.s, unit, opts); }; createClass(Interval, [{ key: 'start', get: function get$$1() { return this.isValid ? this.s : null; } /** * Returns the end of the Interval * @return {DateTime} */ }, { key: 'end', get: function get$$1() { return this.isValid ? this.e : null; } /** * Returns whether this Interval's end is at least its start, i.e. that the Interval isn't 'backwards'. * @return {boolean} */ }, { key: 'isValid', get: function get$$1() { return this.invalidReason === null; } /** * Returns an explanation of why this Interval became invalid, or null if the Interval is valid * @return {string} */ }, { key: 'invalidReason', get: function get$$1() { return this.invalid; } }]); return Interval; }(); /** * The Info class contains static methods for retrieving general time and date related data. For example, it has methods for finding out if a time zone has a DST, for listing the months in any supported locale, and for discovering which of Luxon features are available in the current environment. */ var Info = function () { function Info() { classCallCheck(this, Info); } /** * Return whether the specified zone contains a DST. * @param {string|Zone} [zone='local'] - Zone to check. Defaults to the environment's local zone. * @return {boolean} */ Info.hasDST = function hasDST() { var zone = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Settings.defaultZone; var proto = DateTime.local().setZone(zone).set({ month: 12 }); return !zone.universal && proto.offset !== proto.set({ month: 6 }).offset; }; /** * Return whether the specified zone is a valid IANA specifier. * @param {string} zone - Zone to check * @return {boolean} */ Info.isValidIANAZone = function isValidIANAZone(zone) { return !!IANAZone.isValidSpecifier(zone) && IANAZone.isValidZone(zone); }; /** * Return an array of standalone month names. * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param {string} [length='long'] - the length of the month representation, such as "numeric", "2-digit", "narrow", "short", "long" * @param {object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.numberingSystem=null] - the numbering system * @param {string} [opts.outputCalendar='gregory'] - the calendar * @example Info.months()[0] //=> 'January' * @example Info.months('short')[0] //=> 'Jan' * @example Info.months('numeric')[0] //=> '1' * @example Info.months('short', { locale: 'fr-CA' } )[0] //=> 'janv.' * @example Info.months('numeric', { locale: 'ar' })[0] //=> '١' * @example Info.months('long', { outputCalendar: 'islamic' })[0] //=> 'Rabiʻ I' * @return {[string]} */ Info.months = function months() { var length = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'long'; var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref$locale = _ref.locale, locale = _ref$locale === undefined ? null : _ref$locale, _ref$numberingSystem = _ref.numberingSystem, numberingSystem = _ref$numberingSystem === undefined ? null : _ref$numberingSystem, _ref$outputCalendar = _ref.outputCalendar, outputCalendar = _ref$outputCalendar === undefined ? 'gregory' : _ref$outputCalendar; return Locale.create(locale, numberingSystem, outputCalendar).months(length); }; /** * Return an array of format month names. * Format months differ from standalone months in that they're meant to appear next to the day of the month. In some languages, that * changes the string. * See {@link months} * @param {string} [length='long'] - the length of the month representation, such as "numeric", "2-digit", "narrow", "short", "long" * @param {object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.numbering=null] - the numbering system * @param {string} [opts.outputCalendar='gregory'] - the calendar * @return {[string]} */ Info.monthsFormat = function monthsFormat() { var length = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'long'; var _ref2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref2$locale = _ref2.locale, locale = _ref2$locale === undefined ? null : _ref2$locale, _ref2$numberingSystem = _ref2.numberingSystem, numberingSystem = _ref2$numberingSystem === undefined ? null : _ref2$numberingSystem, _ref2$outputCalendar = _ref2.outputCalendar, outputCalendar = _ref2$outputCalendar === undefined ? 'gregory' : _ref2$outputCalendar; return Locale.create(locale, numberingSystem, outputCalendar).months(length, true); }; /** * Return an array of standalone week names. * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param {string} [length='long'] - the length of the month representation, such as "narrow", "short", "long". * @param {object} opts - options * @param {string} [opts.locale] - the locale code * @param {string} [opts.numbering=null] - the numbering system * @param {string} [opts.outputCalendar='gregory'] - the calendar * @example Info.weekdays()[0] //=> 'Monday' * @example Info.weekdays('short')[0] //=> 'Mon' * @example Info.weekdays('short', { locale: 'fr-CA' })[0] //=> 'lun.' * @example Info.weekdays('short', { locale: 'ar' })[0] //=> 'الاثنين' * @return {[string]} */ Info.weekdays = function weekdays() { var length = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'long'; var _ref3 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref3$locale = _ref3.locale, locale = _ref3$locale === undefined ? null : _ref3$locale, _ref3$numberingSystem = _ref3.numberingSystem, numberingSystem = _ref3$numberingSystem === undefined ? null : _ref3$numberingSystem; return Locale.create(locale, numberingSystem, null).weekdays(length); }; /** * Return an array of format week names. * Format weekdays differ from standalone weekdays in that they're meant to appear next to more date information. In some languages, that * changes the string. * See {@link weekdays} * @param {string} [length='long'] - the length of the month representation, such as "narrow", "short", "long". * @param {object} opts - options * @param {string} [opts.locale=null] - the locale code * @param {string} [opts.numbering=null] - the numbering system * @param {string} [opts.outputCalendar='gregory'] - the calendar * @return {[string]} */ Info.weekdaysFormat = function weekdaysFormat() { var length = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'long'; var _ref4 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref4$locale = _ref4.locale, locale = _ref4$locale === undefined ? null : _ref4$locale, _ref4$numberingSystem = _ref4.numberingSystem, numberingSystem = _ref4$numberingSystem === undefined ? null : _ref4$numberingSystem; return Locale.create(locale, numberingSystem, null).weekdays(length, true); }; /** * Return an array of meridiems. * @param {object} opts - options * @param {string} [opts.locale] - the locale code * @example Info.meridiems() //=> [ 'AM', 'PM' ] * @example Info.meridiems({ locale: 'de' }) //=> [ 'vorm.', 'nachm.' ] * @return {[string]} */ Info.meridiems = function meridiems() { var _ref5 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, _ref5$locale = _ref5.locale, locale = _ref5$locale === undefined ? null : _ref5$locale; return Locale.create(locale).meridiems(); }; /** * Return an array of eras, such as ['BC', 'AD']. The locale can be specified, but the calendar system is always Gregorian. * @param {string} [length='short'] - the length of the era representation, such as "short" or "long". * @param {object} opts - options * @param {string} [opts.locale] - the locale code * @example Info.eras() //=> [ 'BC', 'AD' ] * @example Info.eras('long') //=> [ 'Before Christ', 'Anno Domini' ] * @example Info.eras('long', { locale: 'fr' }) //=> [ 'avant Jésus-Christ', 'après Jésus-Christ' ] * @return {[string]} */ Info.eras = function eras() { var length = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'short'; var _ref6 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref6$locale = _ref6.locale, locale = _ref6$locale === undefined ? null : _ref6$locale; return Locale.create(locale, null, 'gregory').eras(length); }; /** * Return the set of available features in this environment. * Some features of Luxon are not available in all environments. For example, on older browsers, timezone support is not available. Use this function to figure out if that's the case. * Keys: * * `zones`: whether this environment supports IANA timezones * * `intlTokens`: whether this environment supports internationalized token-based formatting/parsing * * `intl`: whether this environment supports general internationalization * @example Info.features() //=> { intl: true, intlTokens: false, zones: true } * @return {object} */ Info.features = function features() { var intl = false, intlTokens = false, zones = false; if (Util.hasIntl()) { intl = true; intlTokens = Util.hasFormatToParts(); try { zones = new Intl.DateTimeFormat('en', { timeZone: 'America/New_York' }).resolvedOptions().timeZone === 'America/New_York'; } catch (e) { zones = false; } } return { intl: intl, intlTokens: intlTokens, zones: zones }; }; return Info; }(); var MISSING_FTP = 'missing Intl.DateTimeFormat.formatToParts support'; function intUnit(regex) { var post = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function (i) { return i; }; return { regex: regex, deser: function deser(_ref) { var s = _ref[0]; return post(parseInt(s)); } }; } function fixListRegex(s) { // make dots optional and also make them literal return s.replace(/\./, '\\.?'); } function stripInsensitivities(s) { return s.replace(/\./, '').toLowerCase(); } function oneOf(strings, startIndex) { if (strings === null) { return null; } else { return { regex: RegExp(strings.map(fixListRegex).join('|')), deser: function deser(_ref2) { var s = _ref2[0]; return strings.findIndex(function (i) { return stripInsensitivities(s) === stripInsensitivities(i); }) + startIndex; } }; } } function offset(regex, groups) { return { regex: regex, deser: function deser(_ref3) { var h = _ref3[1], m = _ref3[2]; return Util.signedOffset(h, m); }, groups: groups }; } function simple(regex) { return { regex: regex, deser: function deser(_ref4) { var s = _ref4[0]; return s; } }; } function unitForToken(token, loc) { var one = /\d/, two = /\d{2}/, three = /\d{3}/, four = /\d{4}/, oneOrTwo = /\d{1,2}/, oneToThree = /\d{1,3}/, twoToFour = /\d{2,4}/, literal = function literal(t) { return { regex: RegExp(t.val), deser: function deser(_ref5) { var s = _ref5[0]; return s; }, literal: true }; }, unitate = function unitate(t) { if (token.literal) { return literal(t); } switch (t.val) { // era case 'G': return oneOf(loc.eras('short', false), 0); case 'GG': return oneOf(loc.eras('long', false), 0); // years case 'y': return intUnit(/\d{1,6}/); case 'yy': return intUnit(twoToFour, Util.untruncateYear); case 'yyyy': return intUnit(four); case 'yyyyy': return intUnit(/\d{4,6}/); case 'yyyyyy': return intUnit(/\d{6}/); // months case 'M': return intUnit(oneOrTwo); case 'MM': return intUnit(two); case 'MMM': return oneOf(loc.months('short', false, false), 1); case 'MMMM': return oneOf(loc.months('long', false, false), 1); case 'L': return intUnit(oneOrTwo); case 'LL': return intUnit(two); case 'LLL': return oneOf(loc.months('short', true, false), 1); case 'LLLL': return oneOf(loc.months('long', true, false), 1); // dates case 'd': return intUnit(oneOrTwo); case 'dd': return intUnit(two); // ordinals case 'o': return intUnit(oneToThree); case 'ooo': return intUnit(three); // time case 'HH': return intUnit(two); case 'H': return intUnit(oneOrTwo); case 'hh': return intUnit(two); case 'h': return intUnit(oneOrTwo); case 'mm': return intUnit(two); case 'm': return intUnit(oneOrTwo); case 's': return intUnit(oneOrTwo); case 'ss': return intUnit(two); case 'S': return intUnit(oneToThree); case 'SSS': return intUnit(three); case 'u': return simple(/\d{1,9}/); // meridiem case 'a': return oneOf(loc.meridiems(), 0); // weekYear (k) case 'kkkk': return intUnit(four); case 'kk': return intUnit(twoToFour, Util.untruncateYear); // weekNumber (W) case 'W': return intUnit(oneOrTwo); case 'WW': return intUnit(two); // weekdays case 'E': case 'c': return intUnit(one); case 'EEE': return oneOf(loc.weekdays('short', false, false), 1); case 'EEEE': return oneOf(loc.weekdays('long', false, false), 1); case 'ccc': return oneOf(loc.weekdays('short', true, false), 1); case 'cccc': return oneOf(loc.weekdays('long', true, false), 1); // offset/zone case 'Z': case 'ZZ': return offset(/([+-]\d{1,2})(?::(\d{2}))?/, 2); case 'ZZZ': return offset(/([+-]\d{1,2})(\d{2})?/, 2); // we don't support ZZZZ (PST) or ZZZZZ (Pacific Standard Time) in parsing // because we don't have any way to figure out what they are case 'z': return simple(/[A-Za-z_]{1,256}\/[A-Za-z_]{1,256}/); default: return literal(t); } }; var unit = unitate(token) || { invalidReason: MISSING_FTP }; unit.token = token; return unit; } function buildRegex(units) { var re = units.map(function (u) { return u.regex; }).reduce(function (f, r) { return f + '(' + r.source + ')'; }, ''); return ['^' + re + '$', units]; } function match(input, regex, handlers) { var matches = input.match(regex); if (matches) { var all = {}; var matchIndex = 1; for (var i in handlers) { if (handlers.hasOwnProperty(i)) { var h = handlers[i], groups = h.groups ? h.groups + 1 : 1; if (!h.literal && h.token) { all[h.token.val[0]] = h.deser(matches.slice(matchIndex, matchIndex + groups)); } matchIndex += groups; } } return [matches, all]; } else { return [matches, {}]; } } function dateTimeFromMatches(matches) { var toField = function toField(token) { switch (token) { case 'S': return 'millisecond'; case 's': return 'second'; case 'm': return 'minute'; case 'h': case 'H': return 'hour'; case 'd': return 'day'; case 'o': return 'ordinal'; case 'L': case 'M': return 'month'; case 'y': return 'year'; case 'E': case 'c': return 'weekday'; case 'W': return 'weekNumber'; case 'k': return 'weekYear'; default: return null; } }; var zone = void 0; if (!Util.isUndefined(matches.Z)) { zone = new FixedOffsetZone(matches.Z); } else if (!Util.isUndefined(matches.z)) { zone = new IANAZone(matches.z); } else { zone = null; } if (!Util.isUndefined(matches.h)) { if (matches.h < 12 && matches.a === 1) { matches.h += 12; } else if (matches.h === 12 && matches.a === 0) { matches.h = 0; } } if (matches.G === 0 && matches.y) { matches.y = -matches.y; } if (!Util.isUndefined(matches.u)) { matches.S = Util.parseMillis(matches.u); } var vals = Object.keys(matches).reduce(function (r, k) { var f = toField(k); if (f) { r[f] = matches[k]; } return r; }, {}); return [vals, zone]; } /** * @private */ var TokenParser = function () { function TokenParser(loc) { classCallCheck(this, TokenParser); this.loc = loc; } TokenParser.prototype.explainParse = function explainParse(input, format) { var _this = this; var tokens = Formatter.parseFormat(format), units = tokens.map(function (t) { return unitForToken(t, _this.loc); }), disqualifyingUnit = units.find(function (t) { return t.invalidReason; }); if (disqualifyingUnit) { return { input: input, tokens: tokens, invalidReason: disqualifyingUnit.invalidReason }; } else { var _buildRegex = buildRegex(units), regexString = _buildRegex[0], handlers = _buildRegex[1], regex = RegExp(regexString, 'i'), _match = match(input, regex, handlers), rawMatches = _match[0], matches = _match[1], _ref6 = matches ? dateTimeFromMatches(matches) : [null, null], result = _ref6[0], zone = _ref6[1]; return { input: input, tokens: tokens, regex: regex, rawMatches: rawMatches, matches: matches, result: result, zone: zone }; } }; TokenParser.prototype.parseDateTime = function parseDateTime(input, format) { var _explainParse = this.explainParse(input, format), result = _explainParse.result, zone = _explainParse.zone, invalidReason = _explainParse.invalidReason; return [result, zone, invalidReason]; }; return TokenParser; }(); var nonLeapLadder = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]; var leapLadder = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335]; function dayOfWeek(year, month, day) { var js = new Date(Date.UTC(year, month - 1, day)).getUTCDay(); return js === 0 ? 7 : js; } function lastWeekNumber(weekYear) { var p1 = (weekYear + Math.floor(weekYear / 4) - Math.floor(weekYear / 100) + Math.floor(weekYear / 400)) % 7, last = weekYear - 1, p2 = (last + Math.floor(last / 4) - Math.floor(last / 100) + Math.floor(last / 400)) % 7; return p1 === 4 || p2 === 3 ? 53 : 52; } function computeOrdinal(year, month, day) { return day + (Util.isLeapYear(year) ? leapLadder : nonLeapLadder)[month - 1]; } function uncomputeOrdinal(year, ordinal) { var table = Util.isLeapYear(year) ? leapLadder : nonLeapLadder, month0 = table.findIndex(function (i) { return i < ordinal; }), day = ordinal - table[month0]; return { month: month0 + 1, day: day }; } /** * @private */ var Conversions = function () { function Conversions() { classCallCheck(this, Conversions); } Conversions.gregorianToWeek = function gregorianToWeek(gregObj) { var year = gregObj.year, month = gregObj.month, day = gregObj.day, ordinal = computeOrdinal(year, month, day), weekday = dayOfWeek(year, month, day); var weekNumber = Math.floor((ordinal - weekday + 10) / 7), weekYear = void 0; if (weekNumber < 1) { weekYear = year - 1; weekNumber = lastWeekNumber(weekYear); } else if (weekNumber > lastWeekNumber(year)) { weekYear = year + 1; weekNumber = 1; } else { weekYear = year; } return Object.assign({ weekYear: weekYear, weekNumber: weekNumber, weekday: weekday }, Util.timeObject(gregObj)); }; Conversions.weekToGregorian = function weekToGregorian(weekData) { var weekYear = weekData.weekYear, weekNumber = weekData.weekNumber, weekday = weekData.weekday, weekdayOfJan4 = dayOfWeek(weekYear, 1, 4), daysInYear = Util.daysInYear(weekYear); var ordinal = weekNumber * 7 + weekday - weekdayOfJan4 - 3, year = void 0; if (ordinal < 1) { year = weekYear - 1; ordinal += Util.daysInYear(year); } else if (ordinal > daysInYear) { year = weekYear + 1; ordinal -= Util.daysInYear(year); } else { year = weekYear; } var _uncomputeOrdinal = uncomputeOrdinal(year, ordinal), month = _uncomputeOrdinal.month, day = _uncomputeOrdinal.day; return Object.assign({ year: year, month: month, day: day }, Util.timeObject(weekData)); }; Conversions.gregorianToOrdinal = function gregorianToOrdinal(gregData) { var year = gregData.year, month = gregData.month, day = gregData.day, ordinal = computeOrdinal(year, month, day); return Object.assign({ year: year, ordinal: ordinal }, Util.timeObject(gregData)); }; Conversions.ordinalToGregorian = function ordinalToGregorian(ordinalData) { var year = ordinalData.year, ordinal = ordinalData.ordinal, _uncomputeOrdinal2 = uncomputeOrdinal(year, ordinal), month = _uncomputeOrdinal2.month, day = _uncomputeOrdinal2.day; return Object.assign({ year: year, month: month, day: day }, Util.timeObject(ordinalData)); }; Conversions.hasInvalidWeekData = function hasInvalidWeekData(obj) { var validYear = Util.isNumber(obj.weekYear), validWeek = Util.numberBetween(obj.weekNumber, 1, lastWeekNumber(obj.weekYear)), validWeekday = Util.numberBetween(obj.weekday, 1, 7); if (!validYear) { return 'weekYear out of range'; } else if (!validWeek) { return 'week out of range'; } else if (!validWeekday) { return 'weekday out of range'; } else return false; }; Conversions.hasInvalidOrdinalData = function hasInvalidOrdinalData(obj) { var validYear = Util.isNumber(obj.year), validOrdinal = Util.numberBetween(obj.ordinal, 1, Util.daysInYear(obj.year)); if (!validYear) { return 'year out of range'; } else if (!validOrdinal) { return 'ordinal out of range'; } else return false; }; Conversions.hasInvalidGregorianData = function hasInvalidGregorianData(obj) { var validYear = Util.isNumber(obj.year), validMonth = Util.numberBetween(obj.month, 1, 12), validDay = Util.numberBetween(obj.day, 1, Util.daysInMonth(obj.year, obj.month)); if (!validYear) { return 'year out of range'; } else if (!validMonth) { return 'month out of range'; } else if (!validDay) { return 'day out of range'; } else return false; }; Conversions.hasInvalidTimeData = function hasInvalidTimeData(obj) { var validHour = Util.numberBetween(obj.hour, 0, 23), validMinute = Util.numberBetween(obj.minute, 0, 59), validSecond = Util.numberBetween(obj.second, 0, 59), validMillisecond = Util.numberBetween(obj.millisecond, 0, 999); if (!validHour) { return 'hour out of range'; } else if (!validMinute) { return 'minute out of range'; } else if (!validSecond) { return 'second out of range'; } else if (!validMillisecond) { return 'millisecond out of range'; } else return false; }; return Conversions; }(); var INVALID = 'Invalid DateTime'; var INVALID_INPUT = 'invalid input'; var UNSUPPORTED_ZONE = 'unsupported zone'; var UNPARSABLE = 'unparsable'; // we cache week data on the DT object and this intermediates the cache function possiblyCachedWeekData(dt) { if (dt.weekData === null) { dt.weekData = Conversions.gregorianToWeek(dt.c); } return dt.weekData; } // clone really means, "make a new object with these modifications". all "setters" really use this // to create a new object while only changing some of the properties function clone(inst, alts) { var current = { ts: inst.ts, zone: inst.zone, c: inst.c, o: inst.o, loc: inst.loc, invalidReason: inst.invalidReason }; return new DateTime(Object.assign({}, current, alts, { old: current })); } // find the right offset a given local time. The o input is our guess, which determines which // offset we'll pick in ambiguous cases (e.g. there are two 3 AMs b/c Fallback DST) function fixOffset(localTS, o, tz) { // Our UTC time is just a guess because our offset is just a guess var utcGuess = localTS - o * 60 * 1000; // Test whether the zone matches the offset for this ts var o2 = tz.offset(utcGuess); // If so, offset didn't change and we're done if (o === o2) { return [utcGuess, o]; } // If not, change the ts by the difference in the offset utcGuess -= (o2 - o) * 60 * 1000; // If that gives us the local time we want, we're done var o3 = tz.offset(utcGuess); if (o2 === o3) { return [utcGuess, o2]; } // If it's different, we're in a hole time. The offset has changed, but the we don't adjust the time return [localTS - Math.min(o2, o3) * 60 * 1000, Math.max(o2, o3)]; } // convert an epoch timestamp into a calendar object with the given offset function tsToObj(ts, offset) { ts += offset * 60 * 1000; var d = new Date(ts); return { year: d.getUTCFullYear(), month: d.getUTCMonth() + 1, day: d.getUTCDate(), hour: d.getUTCHours(), minute: d.getUTCMinutes(), second: d.getUTCSeconds(), millisecond: d.getUTCMilliseconds() }; } // covert a calendar object to a local timestamp (epoch, but with the offset baked in) function objToLocalTS(obj) { var d = Date.UTC(obj.year, obj.month - 1, obj.day, obj.hour, obj.minute, obj.second, obj.millisecond); // javascript is stupid and i hate it if (obj.year < 100 && obj.year >= 0) { d = new Date(d); d.setUTCFullYear(obj.year); } return +d; } // convert a calendar object to a epoch timestamp function objToTS(obj, offset, zone) { return fixOffset(objToLocalTS(obj), offset, zone); } // create a new DT instance by adding a duration, adjusting for DSTs function adjustTime(inst, dur) { var oPre = inst.o, c = Object.assign({}, inst.c, { year: inst.c.year + dur.years, month: inst.c.month + dur.months, day: inst.c.day + dur.days + dur.weeks * 7 }), millisToAdd = Duration.fromObject({ hours: dur.hours, minutes: dur.minutes, seconds: dur.seconds, milliseconds: dur.milliseconds }).as('milliseconds'), localTS = objToLocalTS(c); var _fixOffset = fixOffset(localTS, oPre, inst.zone), ts = _fixOffset[0], o = _fixOffset[1]; if (millisToAdd !== 0) { ts += millisToAdd; // that could have changed the offset by going over a DST, but we want to keep the ts the same o = inst.zone.offset(ts); } return { ts: ts, o: o }; } // helper useful in turning the results of parsing into real dates // by handling the zone options function parseDataToDateTime(parsed, parsedZone, opts) { var setZone = opts.setZone, zone = opts.zone; if (parsed && Object.keys(parsed).length !== 0) { var interpretationZone = parsedZone || zone, inst = DateTime.fromObject(Object.assign(parsed, opts, { zone: interpretationZone })); return setZone ? inst : inst.setZone(zone); } else { return DateTime.invalid(UNPARSABLE); } } // if you want to output a technical format (e.g. RFC 2822), this helper // helps handle the details function toTechFormat(dt, format) { return dt.isValid ? Formatter.create(Locale.create('en-US')).formatDateTimeFromString(dt, format) : null; } // technical time formats (e.g. the time part of ISO 8601), take some options // and this commonizes their handling function toTechTimeFormat(dt, _ref) { var _ref$suppressSeconds = _ref.suppressSeconds, suppressSeconds = _ref$suppressSeconds === undefined ? false : _ref$suppressSeconds, _ref$suppressMillisec = _ref.suppressMilliseconds, suppressMilliseconds = _ref$suppressMillisec === undefined ? false : _ref$suppressMillisec, _ref$includeOffset = _ref.includeOffset, includeOffset = _ref$includeOffset === undefined ? true : _ref$includeOffset, _ref$includeZone = _ref.includeZone, includeZone = _ref$includeZone === undefined ? false : _ref$includeZone, _ref$spaceZone = _ref.spaceZone, spaceZone = _ref$spaceZone === undefined ? false : _ref$spaceZone; var fmt = 'HH:mm'; if (!suppressSeconds || dt.second !== 0 || dt.millisecond !== 0) { fmt += ':ss'; if (!suppressMilliseconds || dt.millisecond !== 0) { fmt += '.SSS'; } } if ((includeZone || includeOffset) && spaceZone) { fmt += ' '; } if (includeZone) { fmt += 'z'; } else if (includeOffset) { fmt += 'ZZ'; } return toTechFormat(dt, fmt); } // defaults for unspecified units in the supported calendars var defaultUnitValues = { month: 1, day: 1, hour: 0, minute: 0, second: 0, millisecond: 0 }; var defaultWeekUnitValues = { weekNumber: 1, weekday: 1, hour: 0, minute: 0, second: 0, millisecond: 0 }; var defaultOrdinalUnitValues = { ordinal: 1, hour: 0, minute: 0, second: 0, millisecond: 0 }; // Units in the supported calendars, sorted by bigness var orderedUnits = ['year', 'month', 'day', 'hour', 'minute', 'second', 'millisecond']; var orderedWeekUnits = ['weekYear', 'weekNumber', 'weekday', 'hour', 'minute', 'second', 'millisecond']; var orderedOrdinalUnits = ['year', 'ordinal', 'hour', 'minute', 'second', 'millisecond']; // standardize case and plurality in units function normalizeUnit(unit) { var ignoreUnknown = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; var normalized = { year: 'year', years: 'year', month: 'month', months: 'month', day: 'day', days: 'day', hour: 'hour', hours: 'hour', minute: 'minute', minutes: 'minute', second: 'second', seconds: 'second', millisecond: 'millisecond', milliseconds: 'millisecond', weekday: 'weekday', weekdays: 'weekday', weeknumber: 'weekNumber', weeksnumber: 'weekNumber', weeknumbers: 'weekNumber', weekyear: 'weekYear', weekyears: 'weekYear', ordinal: 'ordinal' }[unit ? unit.toLowerCase() : unit]; if (!ignoreUnknown && !normalized) throw new InvalidUnitError(unit); return normalized; } // this is a dumbed down version of fromObject() that runs about 60% faster // but doesn't do any validation, makes a bunch of assumptions about what units // are present, and so on. function quickDT(obj, zone) { // assume we have the higher-order units for (var _iterator = orderedUnits, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { var _ref2; if (_isArray) { if (_i >= _iterator.length) break; _ref2 = _iterator[_i++]; } else { _i = _iterator.next(); if (_i.done) break; _ref2 = _i.value; } var u = _ref2; if (Util.isUndefined(obj[u])) { obj[u] = defaultUnitValues[u]; } } var invalidReason = Conversions.hasInvalidGregorianData(obj) || Conversions.hasInvalidTimeData(obj); if (invalidReason) { return DateTime.invalid(invalidReason); } var tsNow = Settings.now(), offsetProvis = zone.offset(tsNow), _objToTS = objToTS(obj, offsetProvis, zone), ts = _objToTS[0], o = _objToTS[1]; return new DateTime({ ts: ts, zone: zone, o: o }); } /** * A DateTime is an immutable data structure representing a specific date and time and accompanying methods. It contains class and instance methods for creating, parsing, interrogating, transforming, and formatting them. * * A DateTime comprises of: * * A timestamp. Each DateTime instance refers to a specific millisecond of the Unix epoch. * * A time zone. Each instance is considered in the context of a specific zone (by default the local system's zone). * * Configuration properties that effect how output strings are formatted, such as `locale`, `numberingSystem`, and `outputCalendar`. * * Here is a brief overview of the most commonly used functionality it provides: * * * **Creation**: To create a DateTime from its components, use one of its factory class methods: {@link local}, {@link utc}, and (most flexibly) {@link fromObject}. To create one from a standard string format, use {@link fromISO}, {@link fromHTTP}, and {@link fromRFC2822}. To create one from a custom string format, use {@link fromFormat}. To create one from a native JS date, use {@link fromJSDate}. * * **Gregorian calendar and time**: To examine the Gregorian properties of a DateTime individually (i.e as opposed to collectively through {@link toObject}), use the {@link year}, {@link month}, * {@link day}, {@link hour}, {@link minute}, {@link second}, {@link millisecond} accessors. * * **Week calendar**: For ISO week calendar attributes, see the {@link weekYear}, {@link weekNumber}, and {@link weekday} accessors. * * **Configuration** See the {@link locale} and {@link numberingSystem} accessors. * * **Transformation**: To transform the DateTime into other DateTimes, use {@link set}, {@link reconfigure}, {@link setZone}, {@link setLocale}, {@link plus}, {@link minus}, {@link endOf}, {@link startOf}, {@link toUTC}, and {@link toLocal}. * * **Output**: To convert the DateTime to other representations, use the {@link toJSON}, {@link toISO}, {@link toHTTP}, {@link toObject}, {@link toRFC2822}, {@link toString}, {@link toLocaleString}, {@link toFormat}, {@link valueOf} and {@link toJSDate}. * * There's plenty others documented below. In addition, for more information on subtler topics like internationalization, time zones, alternative calendars, validity, and so on, see the external documentation. */ var DateTime = function () { /** * @access private */ function DateTime(config) { classCallCheck(this, DateTime); var zone = config.zone || Settings.defaultZone, invalidReason = config.invalidReason || (Number.isNaN(config.ts) ? INVALID_INPUT : null) || (!zone.isValid ? UNSUPPORTED_ZONE : null); /** * @access private */ this.ts = Util.isUndefined(config.ts) ? Settings.now() : config.ts; var c = null, o = null; if (!invalidReason) { var unchanged = config.old && config.old.ts === this.ts && config.old.zone.equals(zone); c = unchanged ? config.old.c : tsToObj(this.ts, zone.offset(this.ts)); o = unchanged ? config.old.o : zone.offset(this.ts); } /** * @access private */ this.zone = zone; /** * @access private */ this.loc = config.loc || Locale.create(); /** * @access private */ this.invalid = invalidReason; /** * @access private */ this.weekData = null; /** * @access private */ this.c = c; /** * @access private */ this.o = o; } // CONSTRUCT /** * Create a local DateTime * @param {number} year - The calendar year. If omitted (as in, call `local()` with no arguments), the current time will be used * @param {number} [month=1] - The month, 1-indexed * @param {number} [day=1] - The day of the month * @param {number} [hour=0] - The hour of the day, in 24-hour time * @param {number} [minute=0] - The minute of the hour, i.e. a number between 0 and 59 * @param {number} [second=0] - The second of the minute, i.e. a number between 0 and 59 * @param {number} [millisecond=0] - The millisecond of the second, i.e. a number between 0 and 999 * @example DateTime.local() //~> now * @example DateTime.local(2017) //~> 2017-01-01T00:00:00 * @example DateTime.local(2017, 3) //~> 2017-03-01T00:00:00 * @example DateTime.local(2017, 3, 12) //~> 2017-03-12T00:00:00 * @example DateTime.local(2017, 3, 12, 5) //~> 2017-03-12T05:00:00 * @example DateTime.local(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00 * @example DateTime.local(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10 * @example DateTime.local(2017, 3, 12, 5, 45, 10, 765) //~> 2017-03-12T05:45:10.675 * @return {DateTime} */ DateTime.local = function local(year, month, day, hour, minute, second, millisecond) { if (Util.isUndefined(year)) { return new DateTime({ ts: Settings.now() }); } else { return quickDT({ year: year, month: month, day: day, hour: hour, minute: minute, second: second, millisecond: millisecond }, Settings.defaultZone); } }; /** * Create a DateTime in UTC * @param {number} year - The calendar year. If omitted (as in, call `utc()` with no arguments), the current time will be used * @param {number} [month=1] - The month, 1-indexed * @param {number} [day=1] - The day of the month * @param {number} [hour=0] - The hour of the day, in 24-hour time * @param {number} [minute=0] - The minute of the hour, i.e. a number between 0 and 59 * @param {number} [second=0] - The second of the minute, i.e. a number between 0 and 59 * @param {number} [millisecond=0] - The millisecond of the second, i.e. a number between 0 and 999 * @example DateTime.utc() //~> now * @example DateTime.utc(2017) //~> 2017-01-01T00:00:00Z * @example DateTime.utc(2017, 3) //~> 2017-03-01T00:00:00Z * @example DateTime.utc(2017, 3, 12) //~> 2017-03-12T00:00:00Z * @example DateTime.utc(2017, 3, 12, 5) //~> 2017-03-12T05:00:00Z * @example DateTime.utc(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00Z * @example DateTime.utc(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10Z * @example DateTime.utc(2017, 3, 12, 5, 45, 10, 765) //~> 2017-03-12T05:45:10.675Z * @return {DateTime} */ DateTime.utc = function utc(year, month, day, hour, minute, second, millisecond) { if (Util.isUndefined(year)) { return new DateTime({ ts: Settings.now(), zone: FixedOffsetZone.utcInstance }); } else { return quickDT({ year: year, month: month, day: day, hour: hour, minute: minute, second: second, millisecond: millisecond }, FixedOffsetZone.utcInstance); } }; /** * Create an DateTime from a Javascript Date object. Uses the default zone. * @param {Date} date - a Javascript Date object * @param {Object} options - configuration options for the DateTime * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into * @return {DateTime} */ DateTime.fromJSDate = function fromJSDate(date) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return new DateTime({ ts: Util.isDate(date) ? date.valueOf() : NaN, zone: Util.normalizeZone(options.zone), loc: Locale.fromObject(options) }); }; /** * Create an DateTime from a count of epoch milliseconds. Uses the default zone. * @param {number} milliseconds - a number of milliseconds since 1970 UTC * @param {Object} options - configuration options for the DateTime * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into * @param {string} [options.locale] - a locale to set on the resulting DateTime instance * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance * @return {DateTime} */ DateTime.fromMillis = function fromMillis(milliseconds) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return new DateTime({ ts: milliseconds, zone: Util.normalizeZone(options.zone), loc: Locale.fromObject(options) }); }; /** * Create an DateTime from a Javascript object with keys like 'year' and 'hour' with reasonable defaults. * @param {Object} obj - the object to create the DateTime from * @param {number} obj.year - a year, such as 1987 * @param {number} obj.month - a month, 1-12 * @param {number} obj.day - a day of the month, 1-31, depending on the month * @param {number} obj.ordinal - day of the year, 1-365 or 366 * @param {number} obj.weekYear - an ISO week year * @param {number} obj.weekNumber - an ISO week number, between 1 and 52 or 53, depending on the year * @param {number} obj.weekday - an ISO weekday, 1-7, where 1 is Monday and 7 is Sunday * @param {number} obj.hour - hour of the day, 0-23 * @param {number} obj.minute - minute of the hour, 0-59 * @param {number} obj.second - second of the minute, 0-59 * @param {number} obj.millisecond - millisecond of the second, 0-999 * @param {string|Zone} [obj.zone='local'] - interpret the numbers in the context of a particular zone. Can take any value taken as the first argument to setZone() * @param {string} [obj.locale='en-US'] - a locale to set on the resulting DateTime instance * @param {string} obj.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} obj.numberingSystem - the numbering system to set on the resulting DateTime instance * @example DateTime.fromObject({ year: 1982, month: 5, day: 25}).toISODate() //=> '1982-05-25' * @example DateTime.fromObject({ year: 1982 }).toISODate() //=> '1982-01-01T00' * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }) //~> today at 10:26:06 * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6, zone: 'utc' }), * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6, zone: 'local' }) * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6, zone: 'America/New_York' }) * @example DateTime.fromObject({ weekYear: 2016, weekNumber: 2, weekday: 3 }).toISODate() //=> '2016-01-13' * @return {DateTime} */ DateTime.fromObject = function fromObject(obj) { var zoneToUse = Util.normalizeZone(obj.zone); if (!zoneToUse.isValid) { return DateTime.invalid(UNSUPPORTED_ZONE); } var tsNow = Settings.now(), offsetProvis = zoneToUse.offset(tsNow), normalized = Util.normalizeObject(obj, normalizeUnit, true), containsOrdinal = !Util.isUndefined(normalized.ordinal), containsGregorYear = !Util.isUndefined(normalized.year), containsGregorMD = !Util.isUndefined(normalized.month) || !Util.isUndefined(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber, loc = Locale.fromObject(obj); // cases: // just a weekday -> this week's instance of that weekday, no worries // (gregorian data or ordinal) + (weekYear or weekNumber) -> error // (gregorian month or day) + ordinal -> error // otherwise just use weeks or ordinals or gregorian, depending on what's specified if ((containsGregor || containsOrdinal) && definiteWeekDef) { throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals"); } if (containsGregorMD && containsOrdinal) { throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day"); } var useWeekData = definiteWeekDef || normalized.weekday && !containsGregor; // configure ourselves to deal with gregorian dates or week stuff var units = void 0, defaultValues = void 0, objNow = tsToObj(tsNow, offsetProvis); if (useWeekData) { units = orderedWeekUnits; defaultValues = defaultWeekUnitValues; objNow = Conversions.gregorianToWeek(objNow); } else if (containsOrdinal) { units = orderedOrdinalUnits; defaultValues = defaultOrdinalUnitValues; objNow = Conversions.gregorianToOrdinal(objNow); } else { units = orderedUnits; defaultValues = defaultUnitValues; } // set default values for missing stuff var foundFirst = false; for (var _iterator2 = units, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) { var _ref3; if (_isArray2) { if (_i2 >= _iterator2.length) break; _ref3 = _iterator2[_i2++]; } else { _i2 = _iterator2.next(); if (_i2.done) break; _ref3 = _i2.value; } var u = _ref3; var v = normalized[u]; if (!Util.isUndefined(v)) { foundFirst = true; } else if (foundFirst) { normalized[u] = defaultValues[u]; } else { normalized[u] = objNow[u]; } } // make sure the values we have are in range var higherOrderInvalid = useWeekData ? Conversions.hasInvalidWeekData(normalized) : containsOrdinal ? Conversions.hasInvalidOrdinalData(normalized) : Conversions.hasInvalidGregorianData(normalized), invalidReason = higherOrderInvalid || Conversions.hasInvalidTimeData(normalized); if (invalidReason) { return DateTime.invalid(invalidReason); } // compute the actual time var gregorian = useWeekData ? Conversions.weekToGregorian(normalized) : containsOrdinal ? Conversions.ordinalToGregorian(normalized) : normalized, _objToTS2 = objToTS(gregorian, offsetProvis, zoneToUse), tsFinal = _objToTS2[0], offsetFinal = _objToTS2[1], inst = new DateTime({ ts: tsFinal, zone: zoneToUse, o: offsetFinal, loc: loc }); // gregorian data + weekday serves only to validate if (normalized.weekday && containsGregor && obj.weekday !== inst.weekday) { return DateTime.invalid('mismatched weekday'); } return inst; }; /** * Create a DateTime from an ISO 8601 string * @param {string} text - the ISO string * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the time to this zone * @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one * @param {string} [opts.locale='en-US'] - a locale to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance * @example DateTime.fromISO('2016-05-25T09:08:34.123') * @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00') * @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00', {setZone: true}) * @example DateTime.fromISO('2016-05-25T09:08:34.123', {zone: 'utc'}) * @example DateTime.fromISO('2016-W05-4') * @return {DateTime} */ DateTime.fromISO = function fromISO(text) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var _RegexParser$parseISO = RegexParser.parseISODate(text), vals = _RegexParser$parseISO[0], parsedZone = _RegexParser$parseISO[1]; return parseDataToDateTime(vals, parsedZone, opts); }; /** * Create a DateTime from an RFC 2822 string * @param {string} text - the RFC 2822 string * @param {Object} opts - options to affect the creation * @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since the offset is always specified in the string itself, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in. * @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one * @param {string} [opts.locale='en-US'] - a locale to set on the resulting DateTime instance * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance * @example DateTime.fromRFC2822('25 Nov 2016 13:23:12 GMT') * @example DateTime.fromRFC2822('Tue, 25 Nov 2016 13:23:12 +0600') * @example DateTime.fromRFC2822('25 Nov 2016 13:23 Z') * @return {DateTime} */ DateTime.fromRFC2822 = function fromRFC2822(text) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var _RegexParser$parseRFC = RegexParser.parseRFC2822Date(text), vals = _RegexParser$parseRFC[0], parsedZone = _RegexParser$parseRFC[1]; return parseDataToDateTime(vals, parsedZone, opts); }; /** * Create a DateTime from an HTTP header date * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1 * @param {string} text - the HTTP header date * @param {object} options - options to affect the creation * @param {string|Zone} [options.zone='local'] - convert the time to this zone. Since HTTP dates are always in UTC, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in. * @param {boolean} [options.setZone=false] - override the zone with the fixed-offset zone specified in the string. For HTTP dates, this is always UTC, so this option is equivalent to setting the `zone` option to 'utc', but this option is included for consistency with similar methods. * @param {string} [options.locale='en-US'] - a locale to set on the resulting DateTime instance * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance * @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance * @example DateTime.fromHTTP('Sun, 06 Nov 1994 08:49:37 GMT') * @example DateTime.fromHTTP('Sunday, 06-Nov-94 08:49:37 GMT') * @example DateTime.fromHTTP('Sun Nov 6 08:49:37 1994') * @return {DateTime} */ DateTime.fromHTTP = function fromHTTP(text) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var _RegexParser$parseHTT = RegexParser.parseHTTPDate(text), vals = _RegexParser$parseHTT[0], parsedZone = _RegexParser$parseHTT[1]; return parseDataToDateTime(vals, parsedZone, options); }; /** * Create a DateTime from an input string and format string * Defaults to en-US if no locale has been specified, regardless of the system's locale * @param {string} text - the string to parse * @param {string} fmt - the format the string is expected to be in (see description) * @param {Object} options - options to affect the creation * @param {string|Zone} [options.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone * @param {boolean} [options.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one * @param {string} [options.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale * @param {string} options.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance * @return {DateTime} */ DateTime.fromFormat = function fromFormat(text, fmt) { var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; if (Util.isUndefined(text) || Util.isUndefined(fmt)) { throw new InvalidArgumentError('fromFormat requires an input string and a format'); } var _options$locale = options.locale, locale = _options$locale === undefined ? null : _options$locale, _options$numberingSys = options.numberingSystem, numberingSystem = _options$numberingSys === undefined ? null : _options$numberingSys, parser = new TokenParser(Locale.fromOpts({ locale: locale, numberingSystem: numberingSystem, defaultToEN: true })), _parser$parseDateTime = parser.parseDateTime(text, fmt), vals = _parser$parseDateTime[0], parsedZone = _parser$parseDateTime[1], invalidReason = _parser$parseDateTime[2]; if (invalidReason) { return DateTime.invalid(invalidReason); } else { return parseDataToDateTime(vals, parsedZone, options); } }; /** * @deprecated use fromFormat instead */ DateTime.fromString = function fromString(text, fmt) { var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; return DateTime.fromFormat(text, fmt, opts); }; /** * Create a DateTime from a SQL date, time, or datetime * Defaults to en-US if no locale has been specified, regardless of the system's locale * @param {string} text - the string to parse * @param {Object} options - options to affect the creation * @param {string|Zone} [options.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone * @param {boolean} [options.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one * @param {string} [options.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale * @param {string} options.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance * @example DateTime.fromSQL('2017-05-15') * @example DateTime.fromSQL('2017-05-15 09:12:34') * @example DateTime.fromSQL('2017-05-15 09:12:34.342') * @example DateTime.fromSQL('2017-05-15 09:12:34.342+06:00') * @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles') * @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles', { setZone: true }) * @example DateTime.fromSQL('2017-05-15 09:12:34.342', { zone: 'America/Los_Angeles' }) * @example DateTime.fromSQL('09:12:34.342') * @return {DateTime} */ DateTime.fromSQL = function fromSQL(text) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var _RegexParser$parseSQL = RegexParser.parseSQL(text), vals = _RegexParser$parseSQL[0], parsedZone = _RegexParser$parseSQL[1]; return parseDataToDateTime(vals, parsedZone, options); }; /** * Create an invalid DateTime. * @return {DateTime} */ DateTime.invalid = function invalid(reason) { if (!reason) { throw new InvalidArgumentError('need to specify a reason the DateTime is invalid'); } if (Settings.throwOnInvalid) { throw new InvalidDateTimeError(reason); } else { return new DateTime({ invalidReason: reason }); } }; // INFO /** * Get the value of unit. * @param {string} unit - a unit such as 'minute' or 'day' * @example DateTime.local(2017, 7, 4).get('month'); //=> 7 * @example DateTime.local(2017, 7, 4).get('day'); //=> 4 * @return {number} */ DateTime.prototype.get = function get$$1(unit) { return this[unit]; }; /** * Returns whether the DateTime is valid. Invalid DateTimes occur when: * * The DateTime was created from invalid calendar information, such as the 13th month or February 30 * * The DateTime was created by an operation on another invalid date * @return {boolean} */ /** * Returns the resolved Intl options for this DateTime. * This is useful in understanding the behavior of formatting methods * @param {object} opts - the same options as toLocaleString * @return {object} */ DateTime.prototype.resolvedLocaleOpts = function resolvedLocaleOpts() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; var _Formatter$create$res = Formatter.create(this.loc.clone(opts), opts).resolvedOptions(this), locale = _Formatter$create$res.locale, numberingSystem = _Formatter$create$res.numberingSystem, calendar = _Formatter$create$res.calendar; return { locale: locale, numberingSystem: numberingSystem, outputCalendar: calendar }; }; // TRANSFORM /** * "Set" the DateTime's zone to UTC. Returns a newly-constructed DateTime. * * Equivalent to {@link setZone}('utc') * @param {number} [offset=0] - optionally, an offset from UTC in minutes * @param {object} [opts={}] - options to pass to `setZone()` * @return {DateTime} */ DateTime.prototype.toUTC = function toUTC() { var offset = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return this.setZone(FixedOffsetZone.instance(offset), opts); }; /** * "Set" the DateTime's zone to the host's local zone. Returns a newly-constructed DateTime. * * Equivalent to `setZone('local')` * @return {DateTime} */ DateTime.prototype.toLocal = function toLocal() { return this.setZone(new LocalZone()); }; /** * "Set" the DateTime's zone to specified zone. Returns a newly-constructed DateTime. * * By default, the setter keeps the underlying time the same (as in, the same UTC timestamp), but the new instance will report different local times and consider DSTs when making computations, as with {@link plus}. You may wish to use {@link toLocal} and {@link toUTC} which provide simple convenience wrappers for commonly used zones. * @param {string|Zone} [zone='local'] - a zone identifier. As a string, that can be any IANA zone supported by the host environment, or a fixed-offset name of the form 'utc+3', or the strings 'local' or 'utc'. You may also supply an instance of a {@link Zone} class. * @param {object} opts - options * @param {boolean} [opts.keepLocalTime=false] - If true, adjust the underlying time so that the local time stays the same, but in the target zone. You should rarely need this. * @return {DateTime} */ DateTime.prototype.setZone = function setZone(zone) { var _ref4 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, _ref4$keepLocalTime = _ref4.keepLocalTime, keepLocalTime = _ref4$keepLocalTime === undefined ? false : _ref4$keepLocalTime, _ref4$keepCalendarTim = _ref4.keepCalendarTime, keepCalendarTime = _ref4$keepCalendarTim === undefined ? false : _ref4$keepCalendarTim; zone = Util.normalizeZone(zone); if (zone.equals(this.zone)) { return this; } else if (!zone.isValid) { return DateTime.invalid(UNSUPPORTED_ZONE); } else { var newTS = keepLocalTime || keepCalendarTime // keepCalendarTime is the deprecated name for keepLocalTime ? this.ts + (this.o - zone.offset(this.ts)) * 60 * 1000 : this.ts; return clone(this, { ts: newTS, zone: zone }); } }; /** * "Set" the locale, numberingSystem, or outputCalendar. Returns a newly-constructed DateTime. * @param {object} properties - the properties to set * @example DateTime.local(2017, 5, 25).reconfigure({ locale: 'en-GB' }) * @return {DateTime} */ DateTime.prototype.reconfigure = function reconfigure() { var _ref5 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, locale = _ref5.locale, numberingSystem = _ref5.numberingSystem, outputCalendar = _ref5.outputCalendar; var loc = this.loc.clone({ locale: locale, numberingSystem: numberingSystem, outputCalendar: outputCalendar }); return clone(this, { loc: loc }); }; /** * "Set" the locale. Returns a newly-constructed DateTime. * Just a convenient alias for reconfigure({ locale }) * @example DateTime.local(2017, 5, 25).setLocale('en-GB') * @return {DateTime} */ DateTime.prototype.setLocale = function setLocale(locale) { return this.reconfigure({ locale: locale }); }; /** * "Set" the values of specified units. Returns a newly-constructed DateTime. * You can only set units with this method; for "setting" metadata, see {@link reconfigure} and {@link setZone}. * @param {object} values - a mapping of units to numbers * @example dt.set({ year: 2017 }) * @example dt.set({ hour: 8, minute: 30 }) * @example dt.set({ weekday: 5 }) * @example dt.set({ year: 2005, ordinal: 234 }) * @return {DateTime} */ DateTime.prototype.set = function set$$1(values) { if (!this.isValid) return this; var normalized = Util.normalizeObject(values, normalizeUnit), settingWeekStuff = !Util.isUndefined(normalized.weekYear) || !Util.isUndefined(normalized.weekNumber) || !Util.isUndefined(normalized.weekday); var mixed = void 0; if (settingWeekStuff) { mixed = Conversions.weekToGregorian(Object.assign(Conversions.gregorianToWeek(this.c), normalized)); } else if (!Util.isUndefined(normalized.ordinal)) { mixed = Conversions.ordinalToGregorian(Object.assign(Conversions.gregorianToOrdinal(this.c), normalized)); } else { mixed = Object.assign(this.toObject(), normalized); // if we didn't set the day but we ended up on an overflow date, // use the last day of the right month if (Util.isUndefined(normalized.day)) { mixed.day = Math.min(Util.daysInMonth(mixed.year, mixed.month), mixed.day); } } var _objToTS3 = objToTS(mixed, this.o, this.zone), ts = _objToTS3[0], o = _objToTS3[1]; return clone(this, { ts: ts, o: o }); }; /** * Add a period of time to this DateTime and return the resulting DateTime * * Adding hours, minutes, seconds, or milliseconds increases the timestamp by the right number of milliseconds. Adding days, months, or years shifts the calendar, accounting for DSTs and leap years along the way. Thus, `dt.plus({ hours: 24 })` may result in a different time than `dt.plus({ days: 1 })` if there's a DST shift in between. * @param {Duration|number|object} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() * @example DateTime.local().plus(123) //~> in 123 milliseconds * @example DateTime.local().plus({ minutes: 15 }) //~> in 15 minutes * @example DateTime.local().plus({ days: 1 }) //~> this time tomorrow * @example DateTime.local().plus({ days: -1 }) //~> this time yesterday * @example DateTime.local().plus({ hours: 3, minutes: 13 }) //~> in 1 hr, 13 min * @example DateTime.local().plus(Duration.fromObject({ hours: 3, minutes: 13 })) //~> in 1 hr, 13 min * @return {DateTime} */ DateTime.prototype.plus = function plus(duration) { if (!this.isValid) return this; var dur = Util.friendlyDuration(duration); return clone(this, adjustTime(this, dur)); }; /** * Subtract a period of time to this DateTime and return the resulting DateTime * See {@link plus} * @param {Duration|number|object} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject() @return {DateTime} */ DateTime.prototype.minus = function minus(duration) { if (!this.isValid) return this; var dur = Util.friendlyDuration(duration).negate(); return clone(this, adjustTime(this, dur)); }; /** * "Set" this DateTime to the beginning of a unit of time. * @param {string} unit - The unit to go to the beginning of. Can be 'year', 'month', 'day', 'hour', 'minute', 'second', or 'millisecond'. * @example DateTime.local(2014, 3, 3).startOf('month').toISODate(); //=> '2014-03-01' * @example DateTime.local(2014, 3, 3).startOf('year').toISODate(); //=> '2014-01-01' * @example DateTime.local(2014, 3, 3, 5, 30).startOf('day').toISOTime(); //=> '00:00.000-05:00' * @example DateTime.local(2014, 3, 3, 5, 30).startOf('hour').toISOTime(); //=> '05:00:00.000-05:00' * @return {DateTime} */ DateTime.prototype.startOf = function startOf(unit) { if (!this.isValid) return this; var o = {}, normalizedUnit = Duration.normalizeUnit(unit); switch (normalizedUnit) { case 'years': o.month = 1; // falls through case 'months': o.day = 1; // falls through case 'weeks': case 'days': o.hour = 0; // falls through case 'hours': o.minute = 0; // falls through case 'minutes': o.second = 0; // falls through case 'seconds': o.millisecond = 0; break; case 'milliseconds': break; default: throw new InvalidUnitError(unit); } if (normalizedUnit === 'weeks') { o.weekday = 1; } return this.set(o); }; /** * "Set" this DateTime to the end (i.e. the last millisecond) of a unit of time * @param {string} unit - The unit to go to the end of. Can be 'year', 'month', 'day', 'hour', 'minute', 'second', or 'millisecond'. * @example DateTime.local(2014, 3, 3).endOf('month').toISO(); //=> '2014-03-03T00:00:00.000-05:00' * @example DateTime.local(2014, 3, 3).endOf('year').toISO(); //=> '2014-12-31T23:59:59.999-05:00' * @example DateTime.local(2014, 3, 3, 5, 30).endOf('day').toISO(); //=> '2014-03-03T23:59:59.999-05:00' * @example DateTime.local(2014, 3, 3, 5, 30).endOf('hour').toISO(); //=> '2014-03-03T05:59:59.999-05:00' * @return {DateTime} */ DateTime.prototype.endOf = function endOf(unit) { var _startOf$plus; return this.isValid ? this.startOf(unit).plus((_startOf$plus = {}, _startOf$plus[unit] = 1, _startOf$plus)).minus(1) : this; }; // OUTPUT /** * Returns a string representation of this DateTime formatted according to the specified format string. * **You may not want this.** See {@link toLocaleString} for a more flexible formatting tool. See the documentation for the specific format tokens supported. * Defaults to en-US if no locale has been specified, regardless of the system's locale * @param {string} fmt - the format string * @param {object} opts - options * @param {boolean} opts.round - round numerical values * @example DateTime.local().toFormat('yyyy LLL dd') //=> '2017 Apr 22' * @example DateTime.local().setLocale('fr').toFormat('yyyy LLL dd') //=> '2017 avr. 22' * @example DateTime.local().toFormat("HH 'hours and' mm 'minutes'") //=> '20 hours and 55 minutes' * @return {string} */ DateTime.prototype.toFormat = function toFormat(fmt) { var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return this.isValid ? Formatter.create(this.loc.redefaultToEN(), opts).formatDateTimeFromString(this, fmt) : INVALID; }; /** * Returns a localized string representing this date. Accepts the same options as the Intl.DateTimeFormat constructor and any presets defined by Luxon, such as `DateTime.DATE_FULL` or `DateTime.TIME_SIMPLE`. * The exact behavior of this method is browser-specific, but in general it will return an appropriate representation. * of the DateTime in the assigned locale. * Defaults to the system's locale if no locale has been specified * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat * @param opts {object} - Intl.DateTimeFormat constructor options * @example DateTime.local().toLocaleString(); //=> 4/20/2017 * @example DateTime.local().setLocale('en-gb').toLocaleString(); //=> '20/04/2017' * @example DateTime.local().toLocaleString(DateTime.DATE_FULL); //=> 'April 20, 2017' * @example DateTime.local().toLocaleString(DateTime.TIME_SIMPLE); //=> '11:32 AM' * @example DateTime.local().toLocaleString(DateTime.DATETIME_SHORT); //=> '4/20/2017, 11:32 AM' * @example DateTime.local().toLocaleString({weekday: 'long', month: 'long', day: '2-digit'}); //=> 'Thu, Apr 20' * @example DateTime.local().toLocaleString({weekday: 'long', month: 'long', day: '2-digit', hour: '2-digit', minute: '2-digit'}); //=> 'Thu, Apr 20, 11:27' * @example DateTime.local().toLocaleString({hour: '2-digit', minute: '2-digit'}); //=> '11:32' * @return {string} */ DateTime.prototype.toLocaleString = function toLocaleString() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Formats.DATE_SHORT; return this.isValid ? Formatter.create(this.loc.clone(opts), opts).formatDateTime(this) : INVALID; }; /** * Returns an array of format "parts", i.e. individual tokens along with metadata. This is allows callers to post-process individual sections of the formatted output. * Defaults to the system's locale if no locale has been specified * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat/formatToParts * @param opts {object} - Intl.DateTimeFormat constructor options, same as `toLocaleString`. * @example DateTime.local().toLocaleString(); //=> [ * //=> { type: 'day', value: '25' }, * //=> { type: 'literal', value: '/' }, * //=> { type: 'month', value: '05' }, * //=> { type: 'literal', value: '/' }, * //=> { type: 'year', value: '1982' } * //=> ] */ DateTime.prototype.toLocaleParts = function toLocaleParts() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; return this.isValid ? Formatter.create(this.loc.clone(opts), opts).formatDateTimeParts(this) : []; }; /** * Returns an ISO 8601-compliant string representation of this DateTime * @param {object} opts - options * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0 * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0 * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @example DateTime.utc(1982, 5, 25).toISO() //=> '1982-05-25T00:00:00.000Z' * @example DateTime.local().toISO() //=> '2017-04-22T20:47:05.335-04:00' * @example DateTime.local().toISO({ includeOffset: false }) //=> '2017-04-22T20:47:05.335' * @return {string} */ DateTime.prototype.toISO = function toISO() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; if (!this.isValid) { return null; } return this.toISODate() + 'T' + this.toISOTime(opts); }; /** * Returns an ISO 8601-compliant string representation of this DateTime's date component * @example DateTime.utc(1982, 5, 25).toISODate() //=> '1982-05-25' * @return {string} */ DateTime.prototype.toISODate = function toISODate() { return toTechFormat(this, 'yyyy-MM-dd'); }; /** * Returns an ISO 8601-compliant string representation of this DateTime's week date * @example DateTime.utc(1982, 5, 25).toISOWeekDate() //=> '1982-W21-2' * @return {string} */ DateTime.prototype.toISOWeekDate = function toISOWeekDate() { return toTechFormat(this, "kkkk-'W'WW-c"); }; /** * Returns an ISO 8601-compliant string representation of this DateTime's time component * @param {object} opts - options * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0 * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0 * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @example DateTime.utc().hour(7).minute(34).toISOTime() //=> '07:34:19.361Z' * @example DateTime.utc().hour(7).minute(34).toISOTime({ suppressSeconds: true }) //=> '07:34Z' * @return {string} */ DateTime.prototype.toISOTime = function toISOTime() { var _ref6 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, _ref6$suppressMillise = _ref6.suppressMilliseconds, suppressMilliseconds = _ref6$suppressMillise === undefined ? false : _ref6$suppressMillise, _ref6$suppressSeconds = _ref6.suppressSeconds, suppressSeconds = _ref6$suppressSeconds === undefined ? false : _ref6$suppressSeconds, _ref6$includeOffset = _ref6.includeOffset, includeOffset = _ref6$includeOffset === undefined ? true : _ref6$includeOffset; return toTechTimeFormat(this, { suppressSeconds: suppressSeconds, suppressMilliseconds: suppressMilliseconds, includeOffset: includeOffset }); }; /** * Returns an RFC 2822-compatible string representation of this DateTime, always in UTC * @example DateTime.utc(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 +0000' * @example DateTime.local(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 -0400' * @return {string} */ DateTime.prototype.toRFC2822 = function toRFC2822() { return toTechFormat(this, 'EEE, dd LLL yyyy hh:mm:ss ZZZ'); }; /** * Returns a string representation of this DateTime appropriate for use in HTTP headers. * Specifically, the string conforms to RFC 1123. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1 * @example DateTime.utc(2014, 7, 13).toHTTP() //=> 'Sun, 13 Jul 2014 00:00:00 GMT' * @example DateTime.utc(2014, 7, 13, 19).toHTTP() //=> 'Sun, 13 Jul 2014 19:00:00 GMT' * @return {string} */ DateTime.prototype.toHTTP = function toHTTP() { return toTechFormat(this.toUTC(), "EEE, dd LLL yyyy HH:mm:ss 'GMT'"); }; /** * Returns a string representation of this DateTime appropriate for use in SQL Date * @example DateTime.utc(2014, 7, 13).toSQLDate() //=> '2014-07-13' * @return {string} */ DateTime.prototype.toSQLDate = function toSQLDate() { return toTechFormat(this, 'yyyy-MM-dd'); }; /** * Returns a string representation of this DateTime appropriate for use in SQL Time * @param {object} opts - options * @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overides includeOffset. * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @example DateTime.utc().toSQL() //=> '05:15:16.345' * @example DateTime.local().toSQL() //=> '05:15:16.345 -04:00' * @example DateTime.local().toSQL({ includeOffset: false }) //=> '05:15:16.345' * @example DateTime.local().toSQL({ includeZone: false }) //=> '05:15:16.345 America/New_York' * @return {string} */ DateTime.prototype.toSQLTime = function toSQLTime() { var _ref7 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, _ref7$includeOffset = _ref7.includeOffset, includeOffset = _ref7$includeOffset === undefined ? true : _ref7$includeOffset, _ref7$includeZone = _ref7.includeZone, includeZone = _ref7$includeZone === undefined ? false : _ref7$includeZone; return toTechTimeFormat(this, { includeOffset: includeOffset, includeZone: includeZone, spaceZone: true }); }; /** * Returns a string representation of this DateTime appropriate for use in SQL DateTime * @param {object} opts - options * @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset. * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00' * @example DateTime.utc(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 Z' * @example DateTime.local(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 -04:00' * @example DateTime.local(2014, 7, 13).toSQL({ includeOffset: false }) //=> '2014-07-13 00:00:00.000' * @example DateTime.local(2014, 7, 13).toSQL({ includeZone: false }) //=> '2014-07-13 00:00:00.000 America/New_York' * @return {string} */ DateTime.prototype.toSQL = function toSQL() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; if (!this.isValid) { return null; } return this.toSQLDate() + ' ' + this.toSQLTime(opts); }; /** * Returns a string representation of this DateTime appropriate for debugging * @return {string} */ DateTime.prototype.toString = function toString() { return this.isValid ? this.toISO() : INVALID; }; /** * Returns a string representation of this DateTime appropriate for the REPL. * @return {string} */ DateTime.prototype.inspect = function inspect() { if (this.isValid) { return 'DateTime {\n ts: ' + this.toISO() + ',\n zone: ' + this.zone.name + ',\n locale: ' + this.locale + ' }'; } else { return 'DateTime { Invalid, reason: ' + this.invalidReason + ' }'; } }; /** * Returns the epoch milliseconds of this DateTime * @return {number} */ DateTime.prototype.valueOf = function valueOf() { return this.isValid ? this.ts : NaN; }; /** * Returns an ISO 8601 representation of this DateTime appropriate for use in JSON. * @return {string} */ DateTime.prototype.toJSON = function toJSON() { return this.toISO(); }; /** * Returns a Javascript object with this DateTime's year, month, day, and so on. * @param opts - options for generating the object * @param {boolean} [opts.includeConfig=false] - include configuration attributes in the output * @example DateTime.local().toObject() //=> { year: 2017, month: 4, day: 22, hour: 20, minute: 49, second: 42, millisecond: 268 } * @return {object} */ DateTime.prototype.toObject = function toObject() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; if (!this.isValid) return {}; var base = Object.assign({}, this.c); if (opts.includeConfig) { base.outputCalendar = this.outputCalendar; base.numberingSystem = this.loc.numberingSystem; base.locale = this.loc.locale; } return base; }; /** * Returns a Javascript Date equivalent to this DateTime. * @return {Date} */ DateTime.prototype.toJSDate = function toJSDate() { return new Date(this.isValid ? this.ts : NaN); }; // COMPARE /** * Return the difference between two DateTimes as a Duration. * @param {DateTime} otherDateTime - the DateTime to compare this one to * @param {string|string[]} [unit=['milliseconds']] - the unit or array of units (such as 'hours' or 'days') to include in the duration. * @param {Object} opts - options that affect the creation of the Duration * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @example * var i1 = DateTime.fromISO('1982-05-25T09:45'), * i2 = DateTime.fromISO('1983-10-14T10:30'); * i2.diff(i1).toObject() //=> { milliseconds: 43807500000 } * i2.diff(i1, 'hours').toObject() //=> { hours: 12168.75 } * i2.diff(i1, ['months', 'days']).toObject() //=> { months: 16, days: 19.03125 } * i2.diff(i1, ['months', 'days', 'hours']).toObject() //=> { months: 16, days: 19, hours: 0.75 } * @return {Duration} */ DateTime.prototype.diff = function diff(otherDateTime) { var unit = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'milliseconds'; var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; if (!this.isValid || !otherDateTime.isValid) return Duration.invalid(this.invalidReason || otherDateTime.invalidReason); var units = Util.maybeArray(unit).map(Duration.normalizeUnit); var flipped = otherDateTime.valueOf() > this.valueOf(), post = flipped ? otherDateTime : this, accum = {}; var cursor = flipped ? this : otherDateTime, lowestOrder = null; if (units.indexOf('years') >= 0) { var dYear = post.year - cursor.year; cursor = cursor.set({ year: post.year }); if (cursor > post) { cursor = cursor.minus({ years: 1 }); dYear -= 1; } accum.years = dYear; lowestOrder = 'years'; } if (units.indexOf('months') >= 0) { var _dYear = post.year - cursor.year; var dMonth = post.month - cursor.month + _dYear * 12; cursor = cursor.set({ year: post.year, month: post.month }); if (cursor > post) { cursor = cursor.minus({ months: 1 }); dMonth -= 1; } accum.months = dMonth; lowestOrder = 'months'; } var computeDayDelta = function computeDayDelta() { var utcDayStart = function utcDayStart(dt) { return dt.toUTC(0, { keepLocalTime: true }).startOf('day').valueOf(); }, ms = utcDayStart(post) - utcDayStart(cursor); return Math.floor(Duration.fromMillis(ms, opts).shiftTo('days').days); }; if (units.indexOf('weeks') >= 0) { var days = computeDayDelta(); var weeks = (days - days % 7) / 7; cursor = cursor.plus({ weeks: weeks }); if (cursor > post) { cursor = cursor.minus({ weeks: 1 }); weeks -= 1; } accum.weeks = weeks; lowestOrder = 'weeks'; } if (units.indexOf('days') >= 0) { var _days = computeDayDelta(); cursor = cursor.set({ year: post.year, month: post.month, day: post.day }); if (cursor > post) { cursor = cursor.minus({ days: 1 }); _days -= 1; } accum.days = _days; lowestOrder = 'days'; } var remaining = Duration.fromMillis(post - cursor, opts), moreUnits = units.filter(function (u) { return ['hours', 'minutes', 'seconds', 'milliseconds'].indexOf(u) >= 0; }), shiftTo = moreUnits.length > 0 ? moreUnits : [lowestOrder], shifted = remaining.shiftTo.apply(remaining, shiftTo), merged = shifted.plus(Duration.fromObject(Object.assign(accum, opts))); return flipped ? merged.negate() : merged; }; /** * Return the difference between this DateTime and right now. * See {@link diff} * @param {string|string[]} [unit=['milliseconds']] - the unit or units units (such as 'hours' or 'days') to include in the duration * @param {Object} opts - options that affect the creation of the Duration * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use * @return {Duration} */ DateTime.prototype.diffNow = function diffNow() { var unit = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'milliseconds'; var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; return this.diff(DateTime.local(), unit, opts); }; /** * Return an Interval spanning between this DateTime and another DateTime * @param {DateTime} otherDateTime - the other end point of the Interval * @return {Duration} */ DateTime.prototype.until = function until(otherDateTime) { return this.isValid ? Interval.fromDateTimes(this, otherDateTime) : this; }; /** * Return whether this DateTime is in the same unit of time as another DateTime * @param {DateTime} otherDateTime - the other DateTime * @param {string} unit - the unit of time to check sameness on * @example DateTime.local().hasSame(otherDT, 'day'); //~> true if both the same calendar day * @return {boolean} */ DateTime.prototype.hasSame = function hasSame(otherDateTime, unit) { if (!this.isValid) return false; if (unit === 'millisecond') { return this.valueOf() === otherDateTime.valueOf(); } else { var inputMs = otherDateTime.valueOf(); return this.startOf(unit) <= inputMs && inputMs <= this.endOf(unit); } }; /** * Equality check * Two DateTimes are equal iff they represent the same millisecond * @param {DateTime} other - the other DateTime * @return {boolean} */ DateTime.prototype.equals = function equals(other) { return this.isValid && other.isValid ? this.valueOf() === other.valueOf() && this.zone.equals(other.zone) && this.loc.equals(other.loc) : false; }; /** * Return the min of several date times * @param {...DateTime} dateTimes - the DateTimes from which to choose the minimum * @return {DateTime} the min DateTime, or undefined if called with no argument */ DateTime.min = function min() { for (var _len = arguments.length, dateTimes = Array(_len), _key = 0; _key < _len; _key++) { dateTimes[_key] = arguments[_key]; } return Util.bestBy(dateTimes, function (i) { return i.valueOf(); }, Math.min); }; /** * Return the max of several date times * @param {...DateTime} dateTimes - the DateTimes from which to choose the maximum * @return {DateTime} the max DateTime, or undefined if called with no argument */ DateTime.max = function max() { for (var _len2 = arguments.length, dateTimes = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { dateTimes[_key2] = arguments[_key2]; } return Util.bestBy(dateTimes, function (i) { return i.valueOf(); }, Math.max); }; // MISC /** * Explain how a string would be parsed by fromFormat() * @param {string} text - the string to parse * @param {string} fmt - the format the string is expected to be in (see description) * @param {object} options - options taken by fromFormat() * @return {object} */ DateTime.fromFormatExplain = function fromFormatExplain(text, fmt) { var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; var parser = new TokenParser(Locale.fromOpts(options)); return parser.explainParse(text, fmt); }; /** * @deprecated use fromFormatExplain instead */ DateTime.fromStringExplain = function fromStringExplain(text, fmt) { var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; return DateTime.fromFormatExplain(text, fmt, options); }; // FORMAT PRESETS /** * {@link toLocaleString} format like 10/14/1983 */ createClass(DateTime, [{ key: 'isValid', get: function get$$1() { return this.invalidReason === null; } /** * Returns an explanation of why this DateTime became invalid, or null if the DateTime is valid * @return {string} */ }, { key: 'invalidReason', get: function get$$1() { return this.invalid; } /** * Get the locale of a DateTime, such 'en-GB'. The locale is used when formatting the DateTime * * @return {string} */ }, { key: 'locale', get: function get$$1() { return this.loc.locale; } /** * Get the numbering system of a DateTime, such 'beng'. The numbering system is used when formatting the DateTime * * @return {string} */ }, { key: 'numberingSystem', get: function get$$1() { return this.loc.numberingSystem; } /** * Get the output calendar of a DateTime, such 'islamic'. The output calendar is used when formatting the DateTime * * @return {string} */ }, { key: 'outputCalendar', get: function get$$1() { return this.loc.outputCalendar; } /** * Get the name of the time zone. * @return {String} */ }, { key: 'zoneName', get: function get$$1() { return this.zone.name; } /** * Get the year * @example DateTime.local(2017, 5, 25).year //=> 2017 * @return {number} */ }, { key: 'year', get: function get$$1() { return this.isValid ? this.c.year : NaN; } /** * Get the month (1-12). * @example DateTime.local(2017, 5, 25).month //=> 5 * @return {number} */ }, { key: 'month', get: function get$$1() { return this.isValid ? this.c.month : NaN; } /** * Get the day of the month (1-30ish). * @example DateTime.local(2017, 5, 25).day //=> 25 * @return {number} */ }, { key: 'day', get: function get$$1() { return this.isValid ? this.c.day : NaN; } /** * Get the hour of the day (0-23). * @example DateTime.local(2017, 5, 25, 9).hour //=> 9 * @return {number} */ }, { key: 'hour', get: function get$$1() { return this.isValid ? this.c.hour : NaN; } /** * Get the minute of the hour (0-59). * @example DateTime.local(2017, 5, 25, 9, 30).minute //=> 30 * @return {number} */ }, { key: 'minute', get: function get$$1() { return this.isValid ? this.c.minute : NaN; } /** * Get the second of the minute (0-59). * @example DateTime.local(2017, 5, 25, 9, 30, 52).second //=> 52 * @return {number} */ }, { key: 'second', get: function get$$1() { return this.isValid ? this.c.second : NaN; } /** * Get the millisecond of the second (0-999). * @example DateTime.local(2017, 5, 25, 9, 30, 52, 654).millisecond //=> 654 * @return {number} */ }, { key: 'millisecond', get: function get$$1() { return this.isValid ? this.c.millisecond : NaN; } /** * Get the week year * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2014, 11, 31).weekYear //=> 2015 * @return {number} */ }, { key: 'weekYear', get: function get$$1() { return this.isValid ? possiblyCachedWeekData(this).weekYear : NaN; } /** * Get the week number of the week year (1-52ish). * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2017, 5, 25).weekNumber //=> 21 * @return {number} */ }, { key: 'weekNumber', get: function get$$1() { return this.isValid ? possiblyCachedWeekData(this).weekNumber : NaN; } /** * Get the day of the week. * 1 is Monday and 7 is Sunday * @see https://en.wikipedia.org/wiki/ISO_week_date * @example DateTime.local(2014, 11, 31).weekday //=> 4 * @return {number} */ }, { key: 'weekday', get: function get$$1() { return this.isValid ? possiblyCachedWeekData(this).weekday : NaN; } /** * Get the ordinal (i.e. the day of the year) * @example DateTime.local(2017, 5, 25).ordinal //=> 145 * @return {number|DateTime} */ }, { key: 'ordinal', get: function get$$1() { return this.isValid ? Conversions.gregorianToOrdinal(this.c).ordinal : NaN; } /** * Get the human readable short month name, such as 'Oct'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).monthShort //=> Oct * @return {string} */ }, { key: 'monthShort', get: function get$$1() { return this.isValid ? Info.months('short', { locale: this.locale })[this.month - 1] : null; } /** * Get the human readable long month name, such as 'October'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).monthLong //=> October * @return {string} */ }, { key: 'monthLong', get: function get$$1() { return this.isValid ? Info.months('long', { locale: this.locale })[this.month - 1] : null; } /** * Get the human readable short weekday, such as 'Mon'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).weekdayShort //=> Mon * @return {string} */ }, { key: 'weekdayShort', get: function get$$1() { return this.isValid ? Info.weekdays('short', { locale: this.locale })[this.weekday - 1] : null; } /** * Get the human readable long weekday, such as 'Monday'. * Defaults to the system's locale if no locale has been specified * @example DateTime.local(2017, 10, 30).weekdayLong //=> Monday * @return {string} */ }, { key: 'weekdayLong', get: function get$$1() { return this.isValid ? Info.weekdays('long', { locale: this.locale })[this.weekday - 1] : null; } /** * Get the UTC offset of this DateTime in minutes * @example DateTime.local().offset //=> -240 * @example DateTime.utc().offset //=> 0 * @return {number} */ }, { key: 'offset', get: function get$$1() { return this.isValid ? this.zone.offset(this.ts) : NaN; } /** * Get the short human name for the zone's current offset, for example "EST" or "EDT". * Defaults to the system's locale if no locale has been specified * @return {String} */ }, { key: 'offsetNameShort', get: function get$$1() { if (this.isValid) { return this.zone.offsetName(this.ts, { format: 'short', locale: this.locale }); } else { return null; } } /** * Get the long human name for the zone's current offset, for example "Eastern Standard Time" or "Eastern Daylight Time". * Defaults to the system's locale if no locale has been specified * @return {String} */ }, { key: 'offsetNameLong', get: function get$$1() { if (this.isValid) { return this.zone.offsetName(this.ts, { format: 'long', locale: this.locale }); } else { return null; } } /** * Get whether this zone's offset ever changes, as in a DST. * @return {boolean} */ }, { key: 'isOffsetFixed', get: function get$$1() { return this.zone.universal; } /** * Get whether the DateTime is in a DST. * @return {boolean} */ }, { key: 'isInDST', get: function get$$1() { if (this.isOffsetFixed) { return false; } else { return this.offset > this.set({ month: 1 }).offset || this.offset > this.set({ month: 5 }).offset; } } /** * Returns true if this DateTime is in a leap year, false otherwise * @example DateTime.local(2016).isInLeapYear //=> true * @example DateTime.local(2013).isInLeapYear //=> false * @return {boolean} */ }, { key: 'isInLeapYear', get: function get$$1() { return Util.isLeapYear(this.year); } /** * Returns the number of days in this DateTime's month * @example DateTime.local(2016, 2).daysInMonth //=> 29 * @example DateTime.local(2016, 3).daysInMonth //=> 31 * @return {number} */ }, { key: 'daysInMonth', get: function get$$1() { return Util.daysInMonth(this.year, this.month); } /** * Returns the number of days in this DateTime's year * @example DateTime.local(2016).daysInYear //=> 366 * @example DateTime.local(2013).daysInYear //=> 365 * @return {number} */ }, { key: 'daysInYear', get: function get$$1() { return this.isValid ? Util.daysInYear(this.year) : NaN; } }], [{ key: 'DATE_SHORT', get: function get$$1() { return Formats.DATE_SHORT; } /** * {@link toLocaleString} format like 'Oct 14, 1983' */ }, { key: 'DATE_MED', get: function get$$1() { return Formats.DATE_MED; } /** * {@link toLocaleString} format like 'October 14, 1983' */ }, { key: 'DATE_FULL', get: function get$$1() { return Formats.DATE_FULL; } /** * {@link toLocaleString} format like 'Tuesday, October 14, 1983' */ }, { key: 'DATE_HUGE', get: function get$$1() { return Formats.DATE_HUGE; } /** * {@link toLocaleString} format like '09:30 AM'. Only 12-hour if the locale is. */ }, { key: 'TIME_SIMPLE', get: function get$$1() { return Formats.TIME_SIMPLE; } /** * {@link toLocaleString} format like '09:30:23 AM'. Only 12-hour if the locale is. */ }, { key: 'TIME_WITH_SECONDS', get: function get$$1() { return Formats.TIME_WITH_SECONDS; } /** * {@link toLocaleString} format like '09:30:23 AM EDT'. Only 12-hour if the locale is. */ }, { key: 'TIME_WITH_SHORT_OFFSET', get: function get$$1() { return Formats.TIME_WITH_SHORT_OFFSET; } /** * {@link toLocaleString} format like '09:30:23 AM Eastern Daylight Time'. Only 12-hour if the locale is. */ }, { key: 'TIME_WITH_LONG_OFFSET', get: function get$$1() { return Formats.TIME_WITH_LONG_OFFSET; } /** * {@link toLocaleString} format like '09:30', always 24-hour. */ }, { key: 'TIME_24_SIMPLE', get: function get$$1() { return Formats.TIME_24_SIMPLE; } /** * {@link toLocaleString} format like '09:30:23', always 24-hour. */ }, { key: 'TIME_24_WITH_SECONDS', get: function get$$1() { return Formats.TIME_24_WITH_SECONDS; } /** * {@link toLocaleString} format like '09:30:23 EDT', always 24-hour. */ }, { key: 'TIME_24_WITH_SHORT_OFFSET', get: function get$$1() { return Formats.TIME_24_WITH_SHORT_OFFSET; } /** * {@link toLocaleString} format like '09:30:23 Eastern Daylight Time', always 24-hour. */ }, { key: 'TIME_24_WITH_LONG_OFFSET', get: function get$$1() { return Formats.TIME_24_WITH_LONG_OFFSET; } /** * {@link toLocaleString} format like '10/14/1983, 9:30 AM'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_SHORT', get: function get$$1() { return Formats.DATETIME_SHORT; } /** * {@link toLocaleString} format like '10/14/1983, 9:30:33 AM'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_SHORT_WITH_SECONDS', get: function get$$1() { return Formats.DATETIME_SHORT_WITH_SECONDS; } /** * {@link toLocaleString} format like 'Oct 14, 1983, 9:30 AM'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_MED', get: function get$$1() { return Formats.DATETIME_MED; } /** * {@link toLocaleString} format like 'Oct 14, 1983, 9:30:33 AM'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_MED_WITH_SECONDS', get: function get$$1() { return Formats.DATETIME_MED_WITH_SECONDS; } /** * {@link toLocaleString} format like 'October 14, 1983, 9:30 AM EDT'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_FULL', get: function get$$1() { return Formats.DATETIME_FULL; } /** * {@link toLocaleString} format like 'October 14, 1983, 9:303 AM EDT'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_FULL_WITH_SECONDS', get: function get$$1() { return Formats.DATETIME_FULL_WITH_SECONDS; } /** * {@link toLocaleString} format like 'Friday, October 14, 1983, 9:30 AM Eastern Daylight Time'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_HUGE', get: function get$$1() { return Formats.DATETIME_HUGE; } /** * {@link toLocaleString} format like 'Friday, October 14, 1983, 9:30:33 AM Eastern Daylight Time'. Only 12-hour if the locale is. */ }, { key: 'DATETIME_HUGE_WITH_SECONDS', get: function get$$1() { return Formats.DATETIME_HUGE_WITH_SECONDS; } }]); return DateTime; }(); exports.DateTime = DateTime; exports.Duration = Duration; exports.Interval = Interval; exports.Info = Info; exports.Zone = Zone; exports.Settings = Settings; //# sourceMappingURL=luxon.js.map