UNPKG

angular-input-masks

Version:
1,631 lines (1,384 loc) 424 kB
/** * angular-input-masks * Personalized input masks for AngularJS * @version v4.2.1 * @link http://github.com/assisrafael/angular-input-masks * @license MIT */ (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){ /** * br-validations * A library of validations applicable to several Brazilian data like I.E., CNPJ, CPF and others * @version v0.3.0 * @link http://github.com/the-darc/br-validations * @license MIT */ (function (root, factory) { /* istanbul ignore next */ if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define([], factory); } else if (typeof exports === 'object') { // Node. Does not work with strict CommonJS, but // only CommonJS-like environments that support module.exports, // like Node. module.exports = factory(); } else { // Browser globals (root is window) root.BrV = factory(); } }(this, function () { var CNPJ = {}; CNPJ.validate = function(c) { var b = [6,5,4,3,2,9,8,7,6,5,4,3,2]; c = c.replace(/[^\d]/g,''); var r = /^(0{14}|1{14}|2{14}|3{14}|4{14}|5{14}|6{14}|7{14}|8{14}|9{14})$/; if (!c || c.length !== 14 || r.test(c)) { return false; } c = c.split(''); for (var i = 0, n = 0; i < 12; i++) { n += c[i] * b[i+1]; } n = 11 - n%11; n = n >= 10 ? 0 : n; if (parseInt(c[12]) !== n) { return false; } for (i = 0, n = 0; i <= 12; i++) { n += c[i] * b[i]; } n = 11 - n%11; n = n >= 10 ? 0 : n; if (parseInt(c[13]) !== n) { return false; } return true; }; var CPF = {}; CPF.validate = function(cpf) { cpf = cpf.replace(/[^\d]+/g,''); var r = /^(0{11}|1{11}|2{11}|3{11}|4{11}|5{11}|6{11}|7{11}|8{11}|9{11})$/; if (!cpf || cpf.length !== 11 || r.test(cpf)) { return false; } function validateDigit(digit) { var add = 0; var init = digit - 9; for (var i = 0; i < 9; i ++) { add += parseInt(cpf.charAt(i + init)) * (i+1); } return (add%11)%10 === parseInt(cpf.charAt(digit)); } return validateDigit(9) && validateDigit(10); }; var IE = function(uf) { if (!(this instanceof IE)) { return new IE(uf); } this.rules = IErules[uf] || []; this.rule; IE.prototype._defineRule = function(value) { this.rule = undefined; for (var r = 0; r < this.rules.length && this.rule === undefined; r++) { var str = value.replace(/[^\d]/g,''); var ruleCandidate = this.rules[r]; if (str.length === ruleCandidate.chars && (!ruleCandidate.match || ruleCandidate.match.test(value))) { this.rule = ruleCandidate; } } return !!this.rule; }; IE.prototype.validate = function(value) { if (!value || !this._defineRule(value)) { return false; } return this.rule.validate(value); }; }; var IErules = {}; var algorithmSteps = { handleStr: { onlyNumbers: function(str) { return str.replace(/[^\d]/g,'').split(''); }, mgSpec: function(str) { var s = str.replace(/[^\d]/g,''); s = s.substr(0,3)+'0'+s.substr(3, s.length); return s.split(''); } }, sum: { normalSum: function(handledStr, pesos) { var nums = handledStr; var sum = 0; for (var i = 0; i < pesos.length; i++) { sum += parseInt(nums[i]) * pesos[i]; } return sum; }, individualSum: function(handledStr, pesos) { var nums = handledStr; var sum = 0; for (var i = 0; i < pesos.length; i++) { var mult = parseInt(nums[i]) * pesos[i]; sum += mult%10 + parseInt(mult/10); } return sum; }, apSpec: function(handledStr, pesos) { var sum = this.normalSum(handledStr, pesos); var ref = handledStr.join(''); if (ref >= '030000010' && ref <= '030170009') { return sum + 5; } if (ref >= '030170010' && ref <= '030190229') { return sum + 9; } return sum; } }, rest: { mod11: function(sum) { return sum%11; }, mod10: function(sum) { return sum%10; }, mod9: function(sum) { return sum%9; } }, expectedDV: { minusRestOf11: function(rest) { return rest < 2 ? 0 : 11 - rest; }, minusRestOf11v2: function(rest) { return rest < 2 ? 11 - rest - 10 : 11 - rest; }, minusRestOf10: function(rest) { return rest < 1 ? 0 : 10 - rest; }, mod10: function(rest) { return rest%10; }, goSpec: function(rest, handledStr) { var ref = handledStr.join(''); if (rest === 1) { return ref >= '101031050' && ref <= '101199979' ? 1 : 0; } return rest === 0 ? 0 : 11 - rest; }, apSpec: function(rest, handledStr) { var ref = handledStr.join(''); if (rest === 0) { return ref >= '030170010' && ref <= '030190229' ? 1 : 0; } return rest === 1 ? 0 : 11 - rest; }, voidFn: function(rest) { return rest; } } }; /** * options { * pesos: Array of values used to operate in sum step * dvPos: Position of the DV to validate considering the handledStr * algorithmSteps: The four DV's validation algorithm steps names * } */ function validateDV(value, options) { var steps = options.algorithmSteps; // Step 01: Handle String var handledStr = algorithmSteps.handleStr[steps[0]](value); // Step 02: Sum chars var sum = algorithmSteps.sum[steps[1]](handledStr, options.pesos); // Step 03: Rest calculation var rest = algorithmSteps.rest[steps[2]](sum); // Fixed Step: Get current DV var currentDV = parseInt(handledStr[options.dvpos]); // Step 04: Expected DV calculation var expectedDV = algorithmSteps.expectedDV[steps[3]](rest, handledStr); // Fixed step: DV verification return currentDV === expectedDV; } function validateIE(value, rule) { for (var i = 0; i < rule.dvs.length; i++) { // console.log('>> >> dv'+i); if (!validateDV(value, rule.dvs[i])) { return false; } } return true; } IErules.PE = [{ //mask: new StringMask('0000000-00'), chars: 9, dvs: [{ dvpos: 7, pesos: [8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] },{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } },{ // mask: new StringMask('00.0.000.0000000-0'), chars: 14, pesos: [[1,2,3,4,5,9,8,7,6,5,4,3,2]], dvs: [{ dvpos: 13, pesos: [5,4,3,2,1,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11v2'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.RS = [{ // mask: new StringMask('000/0000000'), chars: 10, dvs: [{ dvpos: 9, pesos: [2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.AC = [{ // mask: new StringMask('00.000.000/000-00'), chars: 13, match: /^01/, dvs: [{ dvpos: 11, pesos: [4,3,2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] },{ dvpos: 12, pesos: [5,4,3,2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.MG = [{ // mask: new StringMask('000.000.000/0000'), chars: 13, dvs: [{ dvpos: 12, pesos: [1,2,1,2,1,2,1,2,1,2,1,2], algorithmSteps: ['mgSpec', 'individualSum', 'mod10', 'minusRestOf10'] },{ dvpos: 12, pesos: [3,2,11,10,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.SP = [{ // mask: new StringMask('000.000.000.000'), chars: 12, match: /^[0-9]/, dvs: [{ dvpos: 8, pesos: [1,3,4,5,6,7,8,10], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'mod10'] },{ dvpos: 11, pesos: [3,2,10,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'mod10'] }], validate: function(value) { return validateIE(value, this); } },{ // mask: new StringMask('P-00000000.0/000') chars: 12, match: /^P/i, dvs: [{ dvpos: 8, pesos: [1,3,4,5,6,7,8,10], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'mod10'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.DF = [{ // mask: new StringMask('00000000000-00'), chars: 13, dvs: [{ dvpos: 11, pesos: [4,3,2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] },{ dvpos: 12, pesos: [5,4,3,2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.ES = [{ // mask: new StringMask('000.000.00-0') chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.BA = [{ // mask: new StringMask('000000-00') chars: 8, match: /^[0123458]/, dvs: [{ dvpos: 7, pesos: [7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod10', 'minusRestOf10'] },{ dvpos: 6, pesos: [8,7,6,5,4,3,0,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod10', 'minusRestOf10'] }], validate: function(value) { return validateIE(value, this); } },{ chars: 8, match: /^[679]/, dvs: [{ dvpos: 7, pesos: [7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] },{ dvpos: 6, pesos: [8,7,6,5,4,3,0,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } },{ // mask: new StringMask('0000000-00') chars: 9, match: /^[0-9][0123458]/, dvs: [{ dvpos: 8, pesos: [8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod10', 'minusRestOf10'] },{ dvpos: 7, pesos: [9,8,7,6,5,4,3,0,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod10', 'minusRestOf10'] }], validate: function(value) { return validateIE(value, this); } },{ chars: 9, match: /^[0-9][679]/, dvs: [{ dvpos: 8, pesos: [8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] },{ dvpos: 7, pesos: [9,8,7,6,5,4,3,0,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.AM = [{ //mask: new StringMask('00.000.000-0') chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.RN = [{ // {mask: new StringMask('00.000.000-0') chars: 9, match: /^20/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } },{ // {mask: new StringMask('00.0.000.000-0'), chars: 10} chars: 10, match: /^20/, dvs: [{ dvpos: 8, pesos: [10,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.RO = [{ // mask: new StringMask('0000000000000-0') chars: 14, dvs: [{ dvpos: 13, pesos: [6,5,4,3,2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11v2'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.PR = [{ // mask: new StringMask('00000000-00') chars: 10, dvs: [{ dvpos: 8, pesos: [3,2,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] },{ dvpos: 9, pesos: [4,3,2,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.SC = [{ // {mask: new StringMask('000.000.000'), uf: 'SANTA CATARINA'} chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.RJ = [{ // {mask: new StringMask('00.000.00-0'), uf: 'RIO DE JANEIRO'} chars: 8, dvs: [{ dvpos: 7, pesos: [2,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.PA = [{ // {mask: new StringMask('00-000000-0') chars: 9, match: /^15/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.SE = [{ // {mask: new StringMask('00000000-0') chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.PB = [{ // {mask: new StringMask('00000000-0') chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.CE = [{ // {mask: new StringMask('00000000-0') chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.PI = [{ // {mask: new StringMask('000000000') chars: 9, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.MA = [{ // {mask: new StringMask('000000000') chars: 9, match: /^12/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.MT = [{ // {mask: new StringMask('0000000000-0') chars: 11, dvs: [{ dvpos: 10, pesos: [3,2,9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.MS = [{ // {mask: new StringMask('000000000') chars: 9, match: /^28/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.TO = [{ // {mask: new StringMask('00000000000'), chars: 11, match: /^[0-9]{2}((0[123])|(99))/, dvs: [{ dvpos: 10, pesos: [9,8,0,0,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.AL = [{ // {mask: new StringMask('000000000') chars: 9, match: /^24[03578]/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'minusRestOf11'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.RR = [{ // {mask: new StringMask('00000000-0') chars: 9, match: /^24/, dvs: [{ dvpos: 8, pesos: [1,2,3,4,5,6,7,8], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod9', 'voidFn'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.GO = [{ // {mask: new StringMask('00.000.000-0') chars: 9, match: /^1[015]/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'normalSum', 'mod11', 'goSpec'] }], validate: function(value) { return validateIE(value, this); } }]; IErules.AP = [{ // {mask: new StringMask('000000000') chars: 9, match: /^03/, dvs: [{ dvpos: 8, pesos: [9,8,7,6,5,4,3,2], algorithmSteps: ['onlyNumbers', 'apSpec', 'mod11', 'apSpec'] }], validate: function(value) { return validateIE(value, this); } }]; var PIS = {}; PIS.validate = function(pis) { pis = pis.replace(/[^\d]+/g,''); var r = /^(0{11}|1{11}|2{11}|3{11}|4{11}|5{11}|6{11}|7{11}|8{11}|9{11})$/; if (!pis || pis.length !== 11 || r.test(pis)) { return false; } var pisi = pis.substring(0,10); var pisd = pis.substring(10); function calculateDigit(pis){ var p = [3,2,9,8,7,6,5,4,3,2]; var s = 0; for(var i = 0; i <= 9; i++){ s += parseInt(pis.charAt(i)) * p[i]; } var r = 11 - (s%11); return (r === 10 || r === 11) ? 0 : r; } return Number(pisd) === calculateDigit(pisi); }; return { ie: IE, cpf: CPF, cnpj: CNPJ, pis: PIS }; })); },{}],2:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = addUTCMinutes; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function addUTCMinutes(dirtyDate, dirtyAmount, dirtyOptions) { var date = (0, _index2.default)(dirtyDate, dirtyOptions); var amount = Number(dirtyAmount); date.setUTCMinutes(date.getUTCMinutes() + amount); return date; } module.exports = exports['default']; },{"../../toDate/index.js":35}],3:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = cloneObject; function cloneObject(dirtyObject) { dirtyObject = dirtyObject || {}; var object = {}; for (var property in dirtyObject) { if (dirtyObject.hasOwnProperty(property)) { object[property] = dirtyObject[property]; } } return object; } module.exports = exports["default"]; },{}],4:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getUTCDayOfYear; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var MILLISECONDS_IN_DAY = 86400000; // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCDayOfYear(dirtyDate, dirtyOptions) { var date = (0, _index2.default)(dirtyDate, dirtyOptions); var timestamp = date.getTime(); date.setUTCMonth(0, 1); date.setUTCHours(0, 0, 0, 0); var startOfYearTimestamp = date.getTime(); var difference = timestamp - startOfYearTimestamp; return Math.floor(difference / MILLISECONDS_IN_DAY) + 1; } module.exports = exports['default']; },{"../../toDate/index.js":35}],5:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getUTCISOWeek; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../startOfUTCISOWeek/index.js'); var _index4 = _interopRequireDefault(_index3); var _index5 = require('../startOfUTCISOWeekYear/index.js'); var _index6 = _interopRequireDefault(_index5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var MILLISECONDS_IN_WEEK = 604800000; // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCISOWeek(dirtyDate, dirtyOptions) { var date = (0, _index2.default)(dirtyDate, dirtyOptions); var diff = (0, _index4.default)(date, dirtyOptions).getTime() - (0, _index6.default)(date, dirtyOptions).getTime(); // Round the number of days to the nearest integer // because the number of milliseconds in a week is not constant // (e.g. it's different in the week of the daylight saving time clock shift) return Math.round(diff / MILLISECONDS_IN_WEEK) + 1; } module.exports = exports['default']; },{"../../toDate/index.js":35,"../startOfUTCISOWeek/index.js":11,"../startOfUTCISOWeekYear/index.js":12}],6:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getUTCISOWeekYear; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../startOfUTCISOWeek/index.js'); var _index4 = _interopRequireDefault(_index3); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCISOWeekYear(dirtyDate, dirtyOptions) { var date = (0, _index2.default)(dirtyDate, dirtyOptions); var year = date.getUTCFullYear(); var fourthOfJanuaryOfNextYear = new Date(0); fourthOfJanuaryOfNextYear.setUTCFullYear(year + 1, 0, 4); fourthOfJanuaryOfNextYear.setUTCHours(0, 0, 0, 0); var startOfNextYear = (0, _index4.default)(fourthOfJanuaryOfNextYear, dirtyOptions); var fourthOfJanuaryOfThisYear = new Date(0); fourthOfJanuaryOfThisYear.setUTCFullYear(year, 0, 4); fourthOfJanuaryOfThisYear.setUTCHours(0, 0, 0, 0); var startOfThisYear = (0, _index4.default)(fourthOfJanuaryOfThisYear, dirtyOptions); if (date.getTime() >= startOfNextYear.getTime()) { return year + 1; } else if (date.getTime() >= startOfThisYear.getTime()) { return year; } else { return year - 1; } } module.exports = exports['default']; },{"../../toDate/index.js":35,"../startOfUTCISOWeek/index.js":11}],7:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = setUTCDay; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCDay(dirtyDate, dirtyDay, dirtyOptions) { var options = dirtyOptions || {}; var locale = options.locale; var localeWeekStartsOn = locale && locale.options && locale.options.weekStartsOn; var defaultWeekStartsOn = localeWeekStartsOn === undefined ? 0 : Number(localeWeekStartsOn); var weekStartsOn = options.weekStartsOn === undefined ? defaultWeekStartsOn : Number(options.weekStartsOn); // Test if weekStartsOn is between 0 and 6 _and_ is not NaN if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } var date = (0, _index2.default)(dirtyDate, dirtyOptions); var day = Number(dirtyDay); var currentDay = date.getUTCDay(); var remainder = day % 7; var dayIndex = (remainder + 7) % 7; var diff = (dayIndex < weekStartsOn ? 7 : 0) + day - currentDay; date.setUTCDate(date.getUTCDate() + diff); return date; } module.exports = exports['default']; },{"../../toDate/index.js":35}],8:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = setUTCISODay; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCISODay(dirtyDate, dirtyDay, dirtyOptions) { var day = Number(dirtyDay); if (day % 7 === 0) { day = day - 7; } var weekStartsOn = 1; var date = (0, _index2.default)(dirtyDate, dirtyOptions); var currentDay = date.getUTCDay(); var remainder = day % 7; var dayIndex = (remainder + 7) % 7; var diff = (dayIndex < weekStartsOn ? 7 : 0) + day - currentDay; date.setUTCDate(date.getUTCDate() + diff); return date; } module.exports = exports['default']; },{"../../toDate/index.js":35}],9:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = setUTCISOWeek; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../getUTCISOWeek/index.js'); var _index4 = _interopRequireDefault(_index3); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCISOWeek(dirtyDate, dirtyISOWeek, dirtyOptions) { var date = (0, _index2.default)(dirtyDate, dirtyOptions); var isoWeek = Number(dirtyISOWeek); var diff = (0, _index4.default)(date, dirtyOptions) - isoWeek; date.setUTCDate(date.getUTCDate() - diff * 7); return date; } module.exports = exports['default']; },{"../../toDate/index.js":35,"../getUTCISOWeek/index.js":5}],10:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = setUTCISOWeekYear; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../startOfUTCISOWeekYear/index.js'); var _index4 = _interopRequireDefault(_index3); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var MILLISECONDS_IN_DAY = 86400000; // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCISOWeekYear(dirtyDate, dirtyISOYear, dirtyOptions) { var date = (0, _index2.default)(dirtyDate, dirtyOptions); var isoYear = Number(dirtyISOYear); var dateStartOfYear = (0, _index4.default)(date, dirtyOptions); var diff = Math.floor((date.getTime() - dateStartOfYear.getTime()) / MILLISECONDS_IN_DAY); var fourthOfJanuary = new Date(0); fourthOfJanuary.setUTCFullYear(isoYear, 0, 4); fourthOfJanuary.setUTCHours(0, 0, 0, 0); date = (0, _index4.default)(fourthOfJanuary, dirtyOptions); date.setUTCDate(date.getUTCDate() + diff); return date; } module.exports = exports['default']; },{"../../toDate/index.js":35,"../startOfUTCISOWeekYear/index.js":12}],11:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = startOfUTCISOWeek; var _index = require('../../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function startOfUTCISOWeek(dirtyDate, dirtyOptions) { var weekStartsOn = 1; var date = (0, _index2.default)(dirtyDate, dirtyOptions); var day = date.getUTCDay(); var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn; date.setUTCDate(date.getUTCDate() - diff); date.setUTCHours(0, 0, 0, 0); return date; } module.exports = exports['default']; },{"../../toDate/index.js":35}],12:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = startOfUTCISOWeekYear; var _index = require('../getUTCISOWeekYear/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../startOfUTCISOWeek/index.js'); var _index4 = _interopRequireDefault(_index3); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function startOfUTCISOWeekYear(dirtyDate, dirtyOptions) { var year = (0, _index2.default)(dirtyDate, dirtyOptions); var fourthOfJanuary = new Date(0); fourthOfJanuary.setUTCFullYear(year, 0, 4); fourthOfJanuary.setUTCHours(0, 0, 0, 0); var date = (0, _index4.default)(fourthOfJanuary, dirtyOptions); return date; } module.exports = exports['default']; },{"../getUTCISOWeekYear/index.js":6,"../startOfUTCISOWeek/index.js":11}],13:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = addMilliseconds; var _index = require('../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * @name addMilliseconds * @category Millisecond Helpers * @summary Add the specified number of milliseconds to the given date. * * @description * Add the specified number of milliseconds to the given date. * * @param {Date|String|Number} date - the date to be changed * @param {Number} amount - the amount of milliseconds to be added * @param {Options} [options] - the object with options. See [Options]{@link https://date-fns.org/docs/Options} * @param {0|1|2} [options.additionalDigits=2] - passed to `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * @returns {Date} the new date with the milliseconds added * @throws {TypeError} 2 arguments required * @throws {RangeError} `options.additionalDigits` must be 0, 1 or 2 * * @example * // Add 750 milliseconds to 10 July 2014 12:45:30.000: * var result = addMilliseconds(new Date(2014, 6, 10, 12, 45, 30, 0), 750) * //=> Thu Jul 10 2014 12:45:30.750 */ function addMilliseconds(dirtyDate, dirtyAmount, dirtyOptions) { if (arguments.length < 2) { throw new TypeError('2 arguments required, but only ' + arguments.length + ' present'); } var timestamp = (0, _index2.default)(dirtyDate, dirtyOptions).getTime(); var amount = Number(dirtyAmount); return new Date(timestamp + amount); } module.exports = exports['default']; },{"../toDate/index.js":35}],14:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = addMinutes; var _index = require('../addMilliseconds/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var MILLISECONDS_IN_MINUTE = 60000; /** * @name addMinutes * @category Minute Helpers * @summary Add the specified number of minutes to the given date. * * @description * Add the specified number of minutes to the given date. * * @param {Date|String|Number} date - the date to be changed * @param {Number} amount - the amount of minutes to be added * @param {Options} [options] - the object with options. See [Options]{@link https://date-fns.org/docs/Options} * @param {0|1|2} [options.additionalDigits=2] - passed to `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * @returns {Date} the new date with the minutes added * @throws {TypeError} 2 arguments required * @throws {RangeError} `options.additionalDigits` must be 0, 1 or 2 * * @example * // Add 30 minutes to 10 July 2014 12:00:00: * var result = addMinutes(new Date(2014, 6, 10, 12, 0), 30) * //=> Thu Jul 10 2014 12:30:00 */ function addMinutes(dirtyDate, dirtyAmount, dirtyOptions) { if (arguments.length < 2) { throw new TypeError('2 arguments required, but only ' + arguments.length + ' present'); } var amount = Number(dirtyAmount); return (0, _index2.default)(dirtyDate, amount * MILLISECONDS_IN_MINUTE, dirtyOptions); } module.exports = exports['default']; },{"../addMilliseconds/index.js":13}],15:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _index = require('../../../_lib/getUTCDayOfYear/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../../../_lib/getUTCISOWeek/index.js'); var _index4 = _interopRequireDefault(_index3); var _index5 = require('../../../_lib/getUTCISOWeekYear/index.js'); var _index6 = _interopRequireDefault(_index5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var formatters = { // Month: 1, 2, ..., 12 'M': function M(date) { return date.getUTCMonth() + 1; }, // Month: 1st, 2nd, ..., 12th 'Mo': function Mo(date, options) { var month = date.getUTCMonth() + 1; return options.locale.localize.ordinalNumber(month, { unit: 'month' }); }, // Month: 01, 02, ..., 12 'MM': function MM(date) { return addLeadingZeros(date.getUTCMonth() + 1, 2); }, // Month: Jan, Feb, ..., Dec 'MMM': function MMM(date, options) { return options.locale.localize.month(date.getUTCMonth(), { type: 'short' }); }, // Month: January, February, ..., December 'MMMM': function MMMM(date, options) { return options.locale.localize.month(date.getUTCMonth(), { type: 'long' }); }, // Quarter: 1, 2, 3, 4 'Q': function Q(date) { return Math.ceil((date.getUTCMonth() + 1) / 3); }, // Quarter: 1st, 2nd, 3rd, 4th 'Qo': function Qo(date, options) { var quarter = Math.ceil((date.getUTCMonth() + 1) / 3); return options.locale.localize.ordinalNumber(quarter, { unit: 'quarter' }); }, // Day of month: 1, 2, ..., 31 'D': function D(date) { return date.getUTCDate(); }, // Day of month: 1st, 2nd, ..., 31st 'Do': function Do(date, options) { return options.locale.localize.ordinalNumber(date.getUTCDate(), { unit: 'dayOfMonth' }); }, // Day of month: 01, 02, ..., 31 'DD': function DD(date) { return addLeadingZeros(date.getUTCDate(), 2); }, // Day of year: 1, 2, ..., 366 'DDD': function DDD(date) { return (0, _index2.default)(date); }, // Day of year: 1st, 2nd, ..., 366th 'DDDo': function DDDo(date, options) { return options.locale.localize.ordinalNumber((0, _index2.default)(date), { unit: 'dayOfYear' }); }, // Day of year: 001, 002, ..., 366 'DDDD': function DDDD(date) { return addLeadingZeros((0, _index2.default)(date), 3); }, // Day of week: Su, Mo, ..., Sa 'dd': function dd(date, options) { return options.locale.localize.weekday(date.getUTCDay(), { type: 'narrow' }); }, // Day of week: Sun, Mon, ..., Sat 'ddd': function ddd(date, options) { return options.locale.localize.weekday(date.getUTCDay(), { type: 'short' }); }, // Day of week: Sunday, Monday, ..., Saturday 'dddd': function dddd(date, options) { return options.locale.localize.weekday(date.getUTCDay(), { type: 'long' }); }, // Day of week: 0, 1, ..., 6 'd': function d(date) { return date.getUTCDay(); }, // Day of week: 0th, 1st, 2nd, ..., 6th 'do': function _do(date, options) { return options.locale.localize.ordinalNumber(date.getUTCDay(), { unit: 'dayOfWeek' }); }, // Day of ISO week: 1, 2, ..., 7 'E': function E(date) { return date.getUTCDay() || 7; }, // ISO week: 1, 2, ..., 53 'W': function W(date) { return (0, _index4.default)(date); }, // ISO week: 1st, 2nd, ..., 53th 'Wo': function Wo(date, options) { return options.locale.localize.ordinalNumber((0, _index4.default)(date), { unit: 'isoWeek' }); }, // ISO week: 01, 02, ..., 53 'WW': function WW(date) { return addLeadingZeros((0, _index4.default)(date), 2); }, // Year: 00, 01, ..., 99 'YY': function YY(date) { return addLeadingZeros(date.getUTCFullYear(), 4).substr(2); }, // Year: 1900, 1901, ..., 2099 'YYYY': function YYYY(date) { return addLeadingZeros(date.getUTCFullYear(), 4); }, // ISO week-numbering year: 00, 01, ..., 99 'GG': function GG(date) { return String((0, _index6.default)(date)).substr(2); }, // ISO week-numbering year: 1900, 1901, ..., 2099 'GGGG': function GGGG(date) { return (0, _index6.default)(date); }, // Hour: 0, 1, ... 23 'H': function H(date) { return date.getUTCHours(); }, // Hour: 00, 01, ..., 23 'HH': function HH(date) { return addLeadingZeros(date.getUTCHours(), 2); }, // Hour: 1, 2, ..., 12 'h': function h(date) { var hours = date.getUTCHours(); if (hours === 0) { return 12; } else if (hours > 12) { return hours % 12; } else { return hours; } }, // Hour: 01, 02, ..., 12 'hh': function hh(date) { return addLeadingZeros(formatters['h'](date), 2); }, // Minute: 0, 1, ..., 59 'm': function m(date) { return date.getUTCMinutes(); }, // Minute: 00, 01, ..., 59 'mm': function mm(date) { return addLeadingZeros(date.getUTCMinutes(), 2); }, // Second: 0, 1, ..., 59 's': function s(date) { return date.getUTCSeconds(); }, // Second: 00, 01, ..., 59 'ss': function ss(date) { return addLeadingZeros(date.getUTCSeconds(), 2); }, // 1/10 of second: 0, 1, ..., 9 'S': function S(date) { return Math.floor(date.getUTCMilliseconds() / 100); }, // 1/100 of second: 00, 01, ..., 99 'SS': function SS(date) { return addLeadingZeros(Math.floor(date.getUTCMilliseconds() / 10), 2); }, // Millisecond: 000, 001, ..., 999 'SSS': function SSS(date) { return addLeadingZeros(date.getUTCMilliseconds(), 3); }, // Timezone: -01:00, +00:00, ... +12:00 'Z': function Z(date, options) { var originalDate = options._originalDate || date; return formatTimezone(originalDate.getTimezoneOffset(), ':'); }, // Timezone: -0100, +0000, ... +1200 'ZZ': function ZZ(date, options) { var originalDate = options._originalDate || date; return formatTimezone(originalDate.getTimezoneOffset()); }, // Seconds timestamp: 512969520 'X': function X(date, options) { var originalDate = options._originalDate || date; return Math.floor(originalDate.getTime() / 1000); }, // Milliseconds timestamp: 512969520900 'x': function x(date, options) { var originalDate = options._originalDate || date; return originalDate.getTime(); }, // AM, PM 'A': function A(date, options) { return options.locale.localize.timeOfDay(date.getUTCHours(), { type: 'uppercase' }); }, // am, pm 'a': function a(date, options) { return options.locale.localize.timeOfDay(date.getUTCHours(), { type: 'lowercase' }); }, // a.m., p.m. 'aa': function aa(date, options) { return options.locale.localize.timeOfDay(date.getUTCHours(), { type: 'long' }); } }; function formatTimezone(offset, delimeter) { delimeter = delimeter || ''; var sign = offset > 0 ? '-' : '+'; var absOffset = Math.abs(offset); var hours = Math.floor(absOffset / 60); var minutes = absOffset % 60; return sign + addLeadingZeros(hours, 2) + delimeter + addLeadingZeros(minutes, 2); } function addLeadingZeros(number, targetLength) { var output = Math.abs(number).toString(); while (output.length < targetLength) { output = '0' + output; } return output; } exports.default = formatters; module.exports = exports['default']; },{"../../../_lib/getUTCDayOfYear/index.js":4,"../../../_lib/getUTCISOWeek/index.js":5,"../../../_lib/getUTCISOWeekYear/index.js":6}],16:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = format; var _index = require('../toDate/index.js'); var _index2 = _interopRequireDefault(_index); var _index3 = require('../isValid/index.js'); var _index4 = _interopRequireDefault(_index3); var _index5 = require('../locale/en-US/index.js'); var _index6 = _interopRequireDefault(_index5); var _index7 = require('./_lib/formatters/index.js'); var _index8 = _interopRequireDefault(_index7); var _index9 = require('../_lib/cloneObject/index.js'); var _index10 = _interopRequireDefault(_index9); var _index11 = require('../_lib/addUTCMinutes/index.js'); var _index12 = _interopRequireDefault(_index11); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var longFormattingTokensRegExp = /(\[[^[]*])|(\\)?(LTS|LT|LLLL|LLL|LL|L|llll|lll|ll|l)/g; var defaultFormattingTokensRegExp = /(\[[^[]*])|(\\)?(x|ss|s|mm|m|hh|h|do|dddd|ddd|dd|d|aa|a|ZZ|Z|YYYY|YY|X|Wo|WW|W|SSS|SS|S|Qo|Q|Mo|MMMM|MMM|MM|M|HH|H|GGGG|GG|E|Do|DDDo|DDDD|DDD|DD|D|A|.)/g; /** * @name format * @category Common Helpers * @summary Format the date. * * @description * Return the formatted date string in the given format. * * Accepted tokens: * | Unit | Token | Result examples | * |-------------------------|-------|----------------------------------| * | Month | M | 1, 2, ..., 12 | * | | Mo | 1st, 2nd, ..., 12th | * | | MM | 01, 02, ..., 12 | * | | MMM | Jan, Feb, ..., Dec | * | | MMMM | January, February, ..., December | * | Quarter | Q | 1, 2, 3, 4 | * | | Qo | 1st, 2nd, 3rd, 4th | * | Day of month | D | 1, 2, ..., 31 | * | | Do | 1st, 2nd, ..., 31st | * | | DD | 01, 02, ..., 31 | * | Day of year | DDD | 1, 2, ..., 366 | * | | DDDo | 1st, 2nd, ..., 366th | * | | DDDD | 001, 002, ..., 366 | * | Day of week | d | 0, 1, ..., 6 | * | | do | 0th, 1st, ..., 6th | * | | dd | Su, Mo, ..., Sa | * | | ddd | Sun, Mon, ..., Sat | * | | dddd | Sunday, Monday, ..., Saturday | * | Day of ISO week | E | 1, 2, ..., 7 | * | ISO week | W | 1, 2, ..., 53 | * | | Wo | 1st, 2nd, ..., 53rd | * | | WW | 01, 02, ..., 53 | * | Year | YY | 00, 01, ..., 99 | * | | YYYY | 1900, 1901, ..., 2099 | * | ISO week-numbering year | GG | 00, 01, ..., 99 | * | | GGGG | 1900, 1901, ..., 2099 | * | AM/PM | A | AM, PM | * | | a | am, pm | * | | aa | a.m., p.m. | * | Hour | H | 0, 1, ... 23 | * | | HH | 00, 01, ... 23 | * | | h | 1, 2, ..., 12 | * | | hh | 01, 02, ..., 12 | * | Minute | m | 0, 1, ..., 59 | * | | mm | 00, 01, ..., 59 | * | Second | s | 0, 1, ..., 59 | * | | ss | 00, 01, ..., 59 | * | 1/10 of second | S | 0, 1, ..., 9 | * | 1/100 of second | SS | 00, 01, ..., 99 | * | Millisecond | SSS | 000, 001, ..., 999 | * | Timezone | Z | -01:00, +00:00, ... +12:00 | * | | ZZ | -0100, +0000, ..., +1200 | * | Seconds timestamp | X | 512969520 | * | Milliseconds timestamp | x | 512969520900 | * | Long format | LT | 05:30 a.m. | * | | LTS | 05:30:15 a.m. | * | | L | 07/02/1995 | * | | l | 7/2/1995 | * | | LL | July 2 1995 | * | | ll | Jul 2 1995 | * | | LLL | July 2 1995 05:30 a.m. | * | | lll | Jul 2 1995 05:30 a.m. | * | | LLLL | Sunday, July 2 1995 05:30 a.m. | * | | llll | Sun, Jul 2 1995 05:30 a.m. | * * The characters wrapped in square brackets are escaped. * * The result may vary by locale. * * @param {Date|String|Number} date - the original date * @param {String} format - the string of tokens * @param {Options} [options] - the object with options. See [Options]{@link https://date-fns.org/docs/Options} * @param {0|1|2} [options.additionalDigits=2] - passed to `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * @param {Locale} [options.locale=defaultLocale] - the locale object. See [Locale]{@link https://date-fns.org/docs/Locale} * @returns {String} the formatted date string * @throws {TypeError} 2 arguments required * @throws {RangeError} `options.additionalDigits` must be 0, 1 or 2 * @throws {RangeError} `options.locale` must contain `localize` property * @throws {RangeError} `options.locale` must contain `formatLong` property * * @example * // Represent 11 February 2014 in middle-endian format: * var result = format( * new Date(2014, 1, 11), * 'MM/DD/YYYY' * ) * //=> '02/11/2014' * * @example * // Represent 2 July 2014 in Esperanto: * import { eoLocale } from 'date-fns/locale/eo' * var result = format( * new Date(2014, 6, 2), * 'Do [de] MMMM YYYY', * {locale: eoLocale} * ) * //=> '2-a de julio 2014' */ function format(dirtyDate, dirtyFormatStr, dirtyOptions) { if (arguments.length < 2) { throw new TypeError('2 arguments required, but only ' + arguments.length + ' present'); } var formatStr = String(dirtyFormatStr); var options = dirtyOptions || {}; var locale = options.locale || _index6.default; if (!locale.localize) { throw new RangeError('locale must contain localize property'); } if (!locale.formatLong) { throw new RangeError('locale must contain formatLong property'); } var localeFormatters = locale.formatters || {}; var formattingTokensRegExp = locale.formattingTokensRegExp || defaultFormattingTokensRegExp; var formatLong = locale.formatLong; var originalDate = (0, _index2.default)(dirtyDate, options); if (!(0, _index4.default)(originalDate, options)) { return 'Invalid Date'; } // Convert the date in system timezone to the same date in UTC+00:00 timezone. // This ensures that when UTC functions will be implemented, locales will be compatible with them. // See an issue about UTC functions: https://github.com/date-fns/date-fns/issues/376 var timezoneOffset = originalDate.getTimezoneOffset(); var utcDate = (0, _index12.default)(originalDate, -timezoneOffset, options); var formatterOptions = (0, _index10.default)(options); formatterOptions.locale = locale; formatterOptions.formatters = _index8.default; // When UTC functions will be implemented, options._originalDate will likely be a part of public API. // Right now, please don't use it in locales. If you have to use an original date, // please restore it from `date`, adding a timezone offset to it. formatterOptions._originalDate = originalDate; var result = formatStr.replace(longFormattingTokensRegExp, function (substring) { if (substring[0] === '[') { return substring; } if (substring[0] === '\\') { return cleanEscapedString(substring); } return formatLong(substring); }).replace(formattingTokensRegExp, function (substring) { var formatter = localeFormatters[substring] || _index8.default[substring]; if (formatter) { return formatter(utcDate, formatterOptions); } else { return cleanEscapedString(substring); } }); return result; } function cleanEscapedString(input) { if (input.match(/\[[\s\S]/)) { return input.replace(/^\[|]$/g, ''); } return input.replace(/\\/g, ''); } module.exports = exports['default']; },{"../_lib/addUTCMinutes/index.js":2,"../_lib/cloneObject/index.js":3,"../isValid/index.js":17,"../locale/en-US/index.js":30,"../toDate/index.js":35,"./_lib/formatters/index.js":15}],17:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isValid; var _index = require('../toDate/index.js'); var _index2 = _interopRequireDefault(_index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * @name isValid * @category Common Helpers * @summary Is the given date valid? * * @description * Returns false if argument is Invalid Date and true otherwise. * Argument is converted to Date using `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * Invalid Date is a Date, whose time value is NaN. * * Time value of Date: http://es5.github.io/#x15.9.1.1 * * @param {*} date - the date to check * @param {Options} [options] - the object with options. See [Options]{@link https://date-fns.org/docs/Options} * @param {0|1|2} [options.additionalDigits=2] - passed to `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * @returns {Boolean} the date is valid