diff --git a/README.md b/README.md
index 0d334a92b..4545c82eb 100644
--- a/README.md
+++ b/README.md
@@ -144,7 +144,7 @@ Validator | Description
**isOctal(str)** | check if the string is a valid octal number.
**isPassportNumber(str, countryCode)** | check if the string is a valid passport number.
(countryCode is one of `[ 'AM', 'AR', 'AT', 'AU', 'BE', 'BG', 'BY', 'CA', 'CH', 'CN', 'CY', 'CZ', 'DE', 'DK', 'DZ', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'IE' 'IN', 'IS', 'IT', 'JP', 'KR', 'LT', 'LU', 'LV', 'MT', 'NL', 'PO', 'PT', 'RO', 'RU', 'SE', 'SL', 'SK', 'TR', 'UA', 'US' ]`.
**isPort(str)** | check if the string is a valid port number.
-**isPostalCode(str, locale)** | check if the string is a postal code,
(locale is one of `[ 'AD', 'AT', 'AU', 'AZ', 'BE', 'BG', 'BR', 'BY', 'CA', 'CH', 'CZ', 'DE', 'DK', 'DO', 'DZ', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HT', 'HU', 'ID', 'IE' 'IL', 'IN', 'IR', 'IS', 'IT', 'JP', 'KE', 'LI', 'LT', 'LU', 'LV', 'MT', 'MX', 'NL', 'NO', 'NP', 'NZ', 'PL', 'PR', 'PT', 'RO', 'RU', 'SA', 'SE', 'SI', 'TN', 'TW', 'UA', 'US', 'ZA', 'ZM' ]` OR 'any'. If 'any' is used, function will check if any of the locals match. Locale list is `validator.isPostalCodeLocales`.).
+**isPostalCode(str, locale)** | check if the string is a postal code,
(locale is one of `[ 'AD', 'AT', 'AU', 'AZ', 'BE', 'BG', 'BR', 'BY', 'CA', 'CH', 'CZ', 'DE', 'DK', 'DO', 'DZ', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HT', 'HU', 'ID', 'IE' 'IL', 'IN', 'IR', 'IS', 'IT', 'JP', 'KE', 'LI', 'LT', 'LU', 'LV', 'MT', 'MX', 'NL', 'NO', 'NP', 'NZ', 'PL', 'PR', 'PT', 'RO', 'RU', 'SA', 'SE', 'SI', 'TH', 'TN', 'TW', 'UA', 'US', 'ZA', 'ZM' ]` OR 'any'. If 'any' is used, function will check if any of the locals match. Locale list is `validator.isPostalCodeLocales`.).
**isRFC3339(str)** | check if the string is a valid [RFC 3339](https://tools.ietf.org/html/rfc3339) date.
**isRgbColor(str [, includePercentValues])** | check if the string is a rgb or rgba color.
`includePercentValues` defaults to `true`. If you don't want to allow to set `rgb` or `rgba` values with percents, like `rgb(5%,5%,5%)`, or `rgba(90%,90%,90%,.3)`, then set it to false.
**isSemVer(str)** | check if the string is a Semantic Versioning Specification (SemVer).
diff --git a/index.js b/index.js
index 62c95aa49..ad65e6c82 100644
--- a/index.js
+++ b/index.js
@@ -290,4 +290,4 @@ var validator = {
var _default = validator;
exports.default = _default;
module.exports = exports.default;
-module.exports.default = exports.default;
\ No newline at end of file
+module.exports.default = exports.default;
diff --git a/src/lib/isPostalCode.js b/src/lib/isPostalCode.js
index 1cb7d76a6..3dbaab1be 100644
--- a/src/lib/isPostalCode.js
+++ b/src/lib/isPostalCode.js
@@ -58,6 +58,7 @@ const patterns = {
SE: /^[1-9]\d{2}\s?\d{2}$/,
SI: fourDigit,
SK: /^\d{3}\s?\d{2}$/,
+ TH: fiveDigit,
TN: fourDigit,
TW: /^\d{3}(\d{2})?$/,
UA: fiveDigit,
diff --git a/test/validators.js b/test/validators.js
index 519035e1b..efd70cd2f 100644
--- a/test/validators.js
+++ b/test/validators.js
@@ -8920,6 +8920,19 @@ describe('Validators', () => {
'AA1234',
],
},
+ {
+ locale: 'TH',
+ valid: [
+ '10250',
+ '72170',
+ '12140',
+ ],
+ invalid: [
+ 'T1025',
+ 'T72170',
+ '12140TH',
+ ],
+ },
];
let allValid = [];
diff --git a/validator.js b/validator.js
index 75c097837..cd0be7006 100644
--- a/validator.js
+++ b/validator.js
@@ -21,3127 +21,3154 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
(function (global, factory) {
- typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
- typeof define === 'function' && define.amd ? define(factory) :
- (global.validator = factory());
-}(this, (function () {
- 'use strict';
-
- function _typeof(obj) {
- "@babel/helpers - typeof";
-
- if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
- _typeof = function (obj) {
- return typeof obj;
- };
- } else {
- _typeof = function (obj) {
- return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
- };
- }
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
+ typeof define === 'function' && define.amd ? define(factory) :
+ (global.validator = factory());
+}(this, (function () { 'use strict';
- return _typeof(obj);
- }
+function _typeof(obj) {
+ "@babel/helpers - typeof";
- function _slicedToArray(arr, i) {
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
+ if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
+ _typeof = function (obj) {
+ return typeof obj;
+ };
+ } else {
+ _typeof = function (obj) {
+ return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
+ };
}
- function _toConsumableArray(arr) {
- return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
- }
+ return _typeof(obj);
+}
- function _arrayWithoutHoles(arr) {
- if (Array.isArray(arr)) return _arrayLikeToArray(arr);
- }
+function _slicedToArray(arr, i) {
+ return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
+}
- function _arrayWithHoles(arr) {
- if (Array.isArray(arr)) return arr;
- }
+function _toConsumableArray(arr) {
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
+}
- function _iterableToArray(iter) {
- if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
- }
+function _arrayWithoutHoles(arr) {
+ if (Array.isArray(arr)) return _arrayLikeToArray(arr);
+}
- function _iterableToArrayLimit(arr, i) {
- if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
- var _arr = [];
- var _n = true;
- var _d = false;
- var _e = undefined;
+function _arrayWithHoles(arr) {
+ if (Array.isArray(arr)) return arr;
+}
- try {
- for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
- _arr.push(_s.value);
+function _iterableToArray(iter) {
+ if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
+}
- if (i && _arr.length === i) break;
- }
- } catch (err) {
- _d = true;
- _e = err;
+function _iterableToArrayLimit(arr, i) {
+ if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
+ var _arr = [];
+ var _n = true;
+ var _d = false;
+ var _e = undefined;
+
+ try {
+ for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
+ _arr.push(_s.value);
+
+ if (i && _arr.length === i) break;
+ }
+ } catch (err) {
+ _d = true;
+ _e = err;
+ } finally {
+ try {
+ if (!_n && _i["return"] != null) _i["return"]();
} finally {
+ if (_d) throw _e;
+ }
+ }
+
+ return _arr;
+}
+
+function _unsupportedIterableToArray(o, minLen) {
+ if (!o) return;
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
+ var n = Object.prototype.toString.call(o).slice(8, -1);
+ if (n === "Object" && o.constructor) n = o.constructor.name;
+ if (n === "Map" || n === "Set") return Array.from(o);
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
+}
+
+function _arrayLikeToArray(arr, len) {
+ if (len == null || len > arr.length) len = arr.length;
+
+ for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
+
+ return arr2;
+}
+
+function _nonIterableSpread() {
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+}
+
+function _nonIterableRest() {
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+}
+
+function _createForOfIteratorHelper(o, allowArrayLike) {
+ var it;
+
+ if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
+ if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
+ if (it) o = it;
+ var i = 0;
+
+ var F = function () {};
+
+ return {
+ s: F,
+ n: function () {
+ if (i >= o.length) return {
+ done: true
+ };
+ return {
+ done: false,
+ value: o[i++]
+ };
+ },
+ e: function (e) {
+ throw e;
+ },
+ f: F
+ };
+ }
+
+ throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+ }
+
+ var normalCompletion = true,
+ didErr = false,
+ err;
+ return {
+ s: function () {
+ it = o[Symbol.iterator]();
+ },
+ n: function () {
+ var step = it.next();
+ normalCompletion = step.done;
+ return step;
+ },
+ e: function (e) {
+ didErr = true;
+ err = e;
+ },
+ f: function () {
try {
- if (!_n && _i["return"] != null) _i["return"]();
+ if (!normalCompletion && it.return != null) it.return();
} finally {
- if (_d) throw _e;
+ if (didErr) throw err;
}
}
+ };
+}
- return _arr;
- }
-
- function _unsupportedIterableToArray(o, minLen) {
- if (!o) return;
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
- var n = Object.prototype.toString.call(o).slice(8, -1);
- if (n === "Object" && o.constructor) n = o.constructor.name;
- if (n === "Map" || n === "Set") return Array.from(o);
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
- }
+function assertString(input) {
+ var isString = typeof input === 'string' || input instanceof String;
- function _arrayLikeToArray(arr, len) {
- if (len == null || len > arr.length) len = arr.length;
+ if (!isString) {
+ var invalidType;
- for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
+ if (input === null) {
+ invalidType = 'null';
+ } else {
+ invalidType = _typeof(input);
- return arr2;
+ if (invalidType === 'object' && input.constructor && input.constructor.hasOwnProperty('name')) {
+ invalidType = input.constructor.name;
+ } else {
+ invalidType = "a ".concat(invalidType);
+ }
+ }
+
+ throw new TypeError("Expected string but received ".concat(invalidType, "."));
+ }
+}
+
+function toDate(date) {
+ assertString(date);
+ date = Date.parse(date);
+ return !isNaN(date) ? new Date(date) : null;
+}
+
+var alpha = {
+ 'en-US': /^[A-Z]+$/i,
+ 'az-AZ': /^[A-VXYZÇƏĞİıÖŞÜ]+$/i,
+ 'bg-BG': /^[А-Я]+$/i,
+ 'cs-CZ': /^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]+$/i,
+ 'da-DK': /^[A-ZÆØÅ]+$/i,
+ 'de-DE': /^[A-ZÄÖÜß]+$/i,
+ 'el-GR': /^[Α-ώ]+$/i,
+ 'es-ES': /^[A-ZÁÉÍÑÓÚÜ]+$/i,
+ 'fa-IR': /^[ابپتثجچحخدذرزژسشصضطظعغفقکگلمنوهی]+$/i,
+ 'fr-FR': /^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]+$/i,
+ 'it-IT': /^[A-ZÀÉÈÌÎÓÒÙ]+$/i,
+ 'nb-NO': /^[A-ZÆØÅ]+$/i,
+ 'nl-NL': /^[A-ZÁÉËÏÓÖÜÚ]+$/i,
+ 'nn-NO': /^[A-ZÆØÅ]+$/i,
+ 'hu-HU': /^[A-ZÁÉÍÓÖŐÚÜŰ]+$/i,
+ 'pl-PL': /^[A-ZĄĆĘŚŁŃÓŻŹ]+$/i,
+ 'pt-PT': /^[A-ZÃÁÀÂÄÇÉÊËÍÏÕÓÔÖÚÜ]+$/i,
+ 'ru-RU': /^[А-ЯЁ]+$/i,
+ 'sl-SI': /^[A-ZČĆĐŠŽ]+$/i,
+ 'sk-SK': /^[A-ZÁČĎÉÍŇÓŠŤÚÝŽĹŔĽÄÔ]+$/i,
+ 'sr-RS@latin': /^[A-ZČĆŽŠĐ]+$/i,
+ 'sr-RS': /^[А-ЯЂЈЉЊЋЏ]+$/i,
+ 'sv-SE': /^[A-ZÅÄÖ]+$/i,
+ 'tr-TR': /^[A-ZÇĞİıÖŞÜ]+$/i,
+ 'uk-UA': /^[А-ЩЬЮЯЄIЇҐі]+$/i,
+ 'vi-VN': /^[A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i,
+ 'ku-IQ': /^[ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i,
+ ar: /^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/,
+ he: /^[א-ת]+$/,
+ fa: /^['آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی']+$/i
+};
+var alphanumeric = {
+ 'en-US': /^[0-9A-Z]+$/i,
+ 'az-AZ': /^[0-9A-VXYZÇƏĞİıÖŞÜ]+$/i,
+ 'bg-BG': /^[0-9А-Я]+$/i,
+ 'cs-CZ': /^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]+$/i,
+ 'da-DK': /^[0-9A-ZÆØÅ]+$/i,
+ 'de-DE': /^[0-9A-ZÄÖÜß]+$/i,
+ 'el-GR': /^[0-9Α-ω]+$/i,
+ 'es-ES': /^[0-9A-ZÁÉÍÑÓÚÜ]+$/i,
+ 'fr-FR': /^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]+$/i,
+ 'it-IT': /^[0-9A-ZÀÉÈÌÎÓÒÙ]+$/i,
+ 'hu-HU': /^[0-9A-ZÁÉÍÓÖŐÚÜŰ]+$/i,
+ 'nb-NO': /^[0-9A-ZÆØÅ]+$/i,
+ 'nl-NL': /^[0-9A-ZÁÉËÏÓÖÜÚ]+$/i,
+ 'nn-NO': /^[0-9A-ZÆØÅ]+$/i,
+ 'pl-PL': /^[0-9A-ZĄĆĘŚŁŃÓŻŹ]+$/i,
+ 'pt-PT': /^[0-9A-ZÃÁÀÂÄÇÉÊËÍÏÕÓÔÖÚÜ]+$/i,
+ 'ru-RU': /^[0-9А-ЯЁ]+$/i,
+ 'sl-SI': /^[0-9A-ZČĆĐŠŽ]+$/i,
+ 'sk-SK': /^[0-9A-ZÁČĎÉÍŇÓŠŤÚÝŽĹŔĽÄÔ]+$/i,
+ 'sr-RS@latin': /^[0-9A-ZČĆŽŠĐ]+$/i,
+ 'sr-RS': /^[0-9А-ЯЂЈЉЊЋЏ]+$/i,
+ 'sv-SE': /^[0-9A-ZÅÄÖ]+$/i,
+ 'tr-TR': /^[0-9A-ZÇĞİıÖŞÜ]+$/i,
+ 'uk-UA': /^[0-9А-ЩЬЮЯЄIЇҐі]+$/i,
+ 'ku-IQ': /^[٠١٢٣٤٥٦٧٨٩0-9ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i,
+ 'vi-VN': /^[0-9A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i,
+ ar: /^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/,
+ he: /^[0-9א-ת]+$/,
+ fa: /^['0-9آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی۱۲۳۴۵۶۷۸۹۰']+$/i
+};
+var decimal = {
+ 'en-US': '.',
+ ar: '٫',
+ fa: '٫'
+};
+var englishLocales = ['AU', 'GB', 'HK', 'IN', 'NZ', 'ZA', 'ZM'];
+
+for (var locale, i = 0; i < englishLocales.length; i++) {
+ locale = "en-".concat(englishLocales[i]);
+ alpha[locale] = alpha['en-US'];
+ alphanumeric[locale] = alphanumeric['en-US'];
+ decimal[locale] = decimal['en-US'];
+} // Source: http://www.localeplanet.com/java/
+
+
+var arabicLocales = ['AE', 'BH', 'DZ', 'EG', 'IQ', 'JO', 'KW', 'LB', 'LY', 'MA', 'QM', 'QA', 'SA', 'SD', 'SY', 'TN', 'YE'];
+
+for (var _locale, _i = 0; _i < arabicLocales.length; _i++) {
+ _locale = "ar-".concat(arabicLocales[_i]);
+ alpha[_locale] = alpha.ar;
+ alphanumeric[_locale] = alphanumeric.ar;
+ decimal[_locale] = decimal.ar;
+}
+
+var farsiLocales = ['IR', 'AF'];
+
+for (var _locale2, _i2 = 0; _i2 < farsiLocales.length; _i2++) {
+ _locale2 = "fa-".concat(farsiLocales[_i2]);
+ alpha[_locale2] = alpha.fa;
+ alphanumeric[_locale2] = alphanumeric.fa;
+ decimal[_locale2] = decimal.fa;
+} // Source: https://en.wikipedia.org/wiki/Decimal_mark
+
+
+var dotDecimal = ['ar-EG', 'ar-LB', 'ar-LY'];
+var commaDecimal = ['bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-ZM', 'es-ES', 'fr-FR', 'it-IT', 'ku-IQ', 'hu-HU', 'nb-NO', 'nn-NO', 'nl-NL', 'pl-PL', 'pt-PT', 'ru-RU', 'sl-SI', 'sr-RS@latin', 'sr-RS', 'sv-SE', 'tr-TR', 'uk-UA', 'vi-VN'];
+
+for (var _i3 = 0; _i3 < dotDecimal.length; _i3++) {
+ decimal[dotDecimal[_i3]] = decimal['en-US'];
+}
+
+for (var _i4 = 0; _i4 < commaDecimal.length; _i4++) {
+ decimal[commaDecimal[_i4]] = ',';
+} // see #1455
+
+
+alpha['fa-IR'] = alpha['fa-IR'];
+alpha['pt-BR'] = alpha['pt-PT'];
+alphanumeric['pt-BR'] = alphanumeric['pt-PT'];
+decimal['pt-BR'] = decimal['pt-PT']; // see #862
+
+alpha['pl-Pl'] = alpha['pl-PL'];
+alphanumeric['pl-Pl'] = alphanumeric['pl-PL'];
+decimal['pl-Pl'] = decimal['pl-PL'];
+
+function isFloat(str, options) {
+ assertString(str);
+ options = options || {};
+
+ var _float = new RegExp("^(?:[-+])?(?:[0-9]+)?(?:\\".concat(options.locale ? decimal[options.locale] : '.', "[0-9]*)?(?:[eE][\\+\\-]?(?:[0-9]+))?$"));
+
+ if (str === '' || str === '.' || str === '-' || str === '+') {
+ return false;
}
- function _nonIterableSpread() {
- throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
- }
+ var value = parseFloat(str.replace(',', '.'));
+ return _float.test(str) && (!options.hasOwnProperty('min') || value >= options.min) && (!options.hasOwnProperty('max') || value <= options.max) && (!options.hasOwnProperty('lt') || value < options.lt) && (!options.hasOwnProperty('gt') || value > options.gt);
+}
+var locales = Object.keys(decimal);
- function _nonIterableRest() {
- throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
- }
+function toFloat(str) {
+ if (!isFloat(str)) return NaN;
+ return parseFloat(str);
+}
- function _createForOfIteratorHelper(o, allowArrayLike) {
- var it;
+function toInt(str, radix) {
+ assertString(str);
+ return parseInt(str, radix || 10);
+}
- if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
- if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
- if (it) o = it;
- var i = 0;
+function toBoolean(str, strict) {
+ assertString(str);
- var F = function () { };
+ if (strict) {
+ return str === '1' || /^true$/i.test(str);
+ }
- return {
- s: F,
- n: function () {
- if (i >= o.length) return {
- done: true
- };
- return {
- done: false,
- value: o[i++]
- };
- },
- e: function (e) {
- throw e;
- },
- f: F
- };
- }
+ return str !== '0' && !/^false$/i.test(str) && str !== '';
+}
- throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
- }
+function equals(str, comparison) {
+ assertString(str);
+ return str === comparison;
+}
- var normalCompletion = true,
- didErr = false,
- err;
- return {
- s: function () {
- it = o[Symbol.iterator]();
- },
- n: function () {
- var step = it.next();
- normalCompletion = step.done;
- return step;
- },
- e: function (e) {
- didErr = true;
- err = e;
- },
- f: function () {
- try {
- if (!normalCompletion && it.return != null) it.return();
- } finally {
- if (didErr) throw err;
- }
- }
- };
+function toString$1(input) {
+ if (_typeof(input) === 'object' && input !== null) {
+ if (typeof input.toString === 'function') {
+ input = input.toString();
+ } else {
+ input = '[object Object]';
+ }
+ } else if (input === null || typeof input === 'undefined' || isNaN(input) && !input.length) {
+ input = '';
}
- function assertString(input) {
- var isString = typeof input === 'string' || input instanceof String;
-
- if (!isString) {
- var invalidType;
+ return String(input);
+}
- if (input === null) {
- invalidType = 'null';
- } else {
- invalidType = _typeof(input);
-
- if (invalidType === 'object' && input.constructor && input.constructor.hasOwnProperty('name')) {
- invalidType = input.constructor.name;
- } else {
- invalidType = "a ".concat(invalidType);
- }
- }
+function merge() {
+ var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ var defaults = arguments.length > 1 ? arguments[1] : undefined;
- throw new TypeError("Expected string but received ".concat(invalidType, "."));
- }
- }
-
- function toDate(date) {
- assertString(date);
- date = Date.parse(date);
- return !isNaN(date) ? new Date(date) : null;
- }
-
- var alpha = {
- 'en-US': /^[A-Z]+$/i,
- 'az-AZ': /^[A-VXYZÇƏĞİıÖŞÜ]+$/i,
- 'bg-BG': /^[А-Я]+$/i,
- 'cs-CZ': /^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]+$/i,
- 'da-DK': /^[A-ZÆØÅ]+$/i,
- 'de-DE': /^[A-ZÄÖÜß]+$/i,
- 'el-GR': /^[Α-ώ]+$/i,
- 'es-ES': /^[A-ZÁÉÍÑÓÚÜ]+$/i,
- 'fr-FR': /^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]+$/i,
- 'it-IT': /^[A-ZÀÉÈÌÎÓÒÙ]+$/i,
- 'nb-NO': /^[A-ZÆØÅ]+$/i,
- 'nl-NL': /^[A-ZÁÉËÏÓÖÜÚ]+$/i,
- 'nn-NO': /^[A-ZÆØÅ]+$/i,
- 'hu-HU': /^[A-ZÁÉÍÓÖŐÚÜŰ]+$/i,
- 'pl-PL': /^[A-ZĄĆĘŚŁŃÓŻŹ]+$/i,
- 'pt-PT': /^[A-ZÃÁÀÂÄÇÉÊËÍÏÕÓÔÖÚÜ]+$/i,
- 'ru-RU': /^[А-ЯЁ]+$/i,
- 'sl-SI': /^[A-ZČĆĐŠŽ]+$/i,
- 'sk-SK': /^[A-ZÁČĎÉÍŇÓŠŤÚÝŽĹŔĽÄÔ]+$/i,
- 'sr-RS@latin': /^[A-ZČĆŽŠĐ]+$/i,
- 'sr-RS': /^[А-ЯЂЈЉЊЋЏ]+$/i,
- 'sv-SE': /^[A-ZÅÄÖ]+$/i,
- 'tr-TR': /^[A-ZÇĞİıÖŞÜ]+$/i,
- 'uk-UA': /^[А-ЩЬЮЯЄIЇҐі]+$/i,
- 'vi-VN': /^[A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i,
- 'ku-IQ': /^[ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i,
- ar: /^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/,
- he: /^[א-ת]+$/,
- fa: /^['آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی']+$/i
- };
- var alphanumeric = {
- 'en-US': /^[0-9A-Z]+$/i,
- 'az-AZ': /^[0-9A-VXYZÇƏĞİıÖŞÜ]+$/i,
- 'bg-BG': /^[0-9А-Я]+$/i,
- 'cs-CZ': /^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]+$/i,
- 'da-DK': /^[0-9A-ZÆØÅ]+$/i,
- 'de-DE': /^[0-9A-ZÄÖÜß]+$/i,
- 'el-GR': /^[0-9Α-ω]+$/i,
- 'es-ES': /^[0-9A-ZÁÉÍÑÓÚÜ]+$/i,
- 'fr-FR': /^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]+$/i,
- 'it-IT': /^[0-9A-ZÀÉÈÌÎÓÒÙ]+$/i,
- 'hu-HU': /^[0-9A-ZÁÉÍÓÖŐÚÜŰ]+$/i,
- 'nb-NO': /^[0-9A-ZÆØÅ]+$/i,
- 'nl-NL': /^[0-9A-ZÁÉËÏÓÖÜÚ]+$/i,
- 'nn-NO': /^[0-9A-ZÆØÅ]+$/i,
- 'pl-PL': /^[0-9A-ZĄĆĘŚŁŃÓŻŹ]+$/i,
- 'pt-PT': /^[0-9A-ZÃÁÀÂÄÇÉÊËÍÏÕÓÔÖÚÜ]+$/i,
- 'ru-RU': /^[0-9А-ЯЁ]+$/i,
- 'sl-SI': /^[0-9A-ZČĆĐŠŽ]+$/i,
- 'sk-SK': /^[0-9A-ZÁČĎÉÍŇÓŠŤÚÝŽĹŔĽÄÔ]+$/i,
- 'sr-RS@latin': /^[0-9A-ZČĆŽŠĐ]+$/i,
- 'sr-RS': /^[0-9А-ЯЂЈЉЊЋЏ]+$/i,
- 'sv-SE': /^[0-9A-ZÅÄÖ]+$/i,
- 'tr-TR': /^[0-9A-ZÇĞİıÖŞÜ]+$/i,
- 'uk-UA': /^[0-9А-ЩЬЮЯЄIЇҐі]+$/i,
- 'ku-IQ': /^[٠١٢٣٤٥٦٧٨٩0-9ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i,
- 'vi-VN': /^[0-9A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i,
- ar: /^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/,
- he: /^[0-9א-ת]+$/,
- fa: /^['0-9آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی۱۲۳۴۵۶۷۸۹۰']+$/i
- };
- var decimal = {
- 'en-US': '.',
- ar: '٫',
- fa: '٫'
- };
- var englishLocales = ['AU', 'GB', 'HK', 'IN', 'NZ', 'ZA', 'ZM'];
+ for (var key in defaults) {
+ if (typeof obj[key] === 'undefined') {
+ obj[key] = defaults[key];
+ }
+ }
- for (var locale, i = 0; i < englishLocales.length; i++) {
- locale = "en-".concat(englishLocales[i]);
- alpha[locale] = alpha['en-US'];
- alphanumeric[locale] = alphanumeric['en-US'];
- decimal[locale] = decimal['en-US'];
- } // Source: http://www.localeplanet.com/java/
+ return obj;
+}
+var defaulContainsOptions = {
+ ignoreCase: false
+};
+function contains(str, elem, options) {
+ assertString(str);
+ options = merge(options, defaulContainsOptions);
+ return options.ignoreCase ? str.toLowerCase().indexOf(toString$1(elem).toLowerCase()) >= 0 : str.indexOf(toString$1(elem)) >= 0;
+}
- var arabicLocales = ['AE', 'BH', 'DZ', 'EG', 'IQ', 'JO', 'KW', 'LB', 'LY', 'MA', 'QM', 'QA', 'SA', 'SD', 'SY', 'TN', 'YE'];
+function matches(str, pattern, modifiers) {
+ assertString(str);
- for (var _locale, _i = 0; _i < arabicLocales.length; _i++) {
- _locale = "ar-".concat(arabicLocales[_i]);
- alpha[_locale] = alpha.ar;
- alphanumeric[_locale] = alphanumeric.ar;
- decimal[_locale] = decimal.ar;
+ if (Object.prototype.toString.call(pattern) !== '[object RegExp]') {
+ pattern = new RegExp(pattern, modifiers);
}
- var farsiLocales = ['IR', 'AF'];
-
- for (var _locale2, _i2 = 0; _i2 < farsiLocales.length; _i2++) {
- _locale2 = "fa-".concat(farsiLocales[_i2]);
- alpha[_locale2] = alpha.fa;
- alphanumeric[_locale2] = alphanumeric.fa;
- decimal[_locale2] = decimal.fa;
- } // Source: https://en.wikipedia.org/wiki/Decimal_mark
+ return pattern.test(str);
+}
+/* eslint-disable prefer-rest-params */
- var dotDecimal = ['ar-EG', 'ar-LB', 'ar-LY'];
- var commaDecimal = ['bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-ZM', 'es-ES', 'fr-FR', 'it-IT', 'ku-IQ', 'hu-HU', 'nb-NO', 'nn-NO', 'nl-NL', 'pl-PL', 'pt-PT', 'ru-RU', 'sl-SI', 'sr-RS@latin', 'sr-RS', 'sv-SE', 'tr-TR', 'uk-UA', 'vi-VN'];
-
- for (var _i3 = 0; _i3 < dotDecimal.length; _i3++) {
- decimal[dotDecimal[_i3]] = decimal['en-US'];
- }
+function isByteLength(str, options) {
+ assertString(str);
+ var min;
+ var max;
- for (var _i4 = 0; _i4 < commaDecimal.length; _i4++) {
- decimal[commaDecimal[_i4]] = ',';
+ if (_typeof(options) === 'object') {
+ min = options.min || 0;
+ max = options.max;
+ } else {
+ // backwards compatibility: isByteLength(str, min [, max])
+ min = arguments[1];
+ max = arguments[2];
}
- alpha['pt-BR'] = alpha['pt-PT'];
- alphanumeric['pt-BR'] = alphanumeric['pt-PT'];
- decimal['pt-BR'] = decimal['pt-PT']; // see #862
+ var len = encodeURI(str).split(/%..|./).length - 1;
+ return len >= min && (typeof max === 'undefined' || len <= max);
+}
- alpha['pl-Pl'] = alpha['pl-PL'];
- alphanumeric['pl-Pl'] = alphanumeric['pl-PL'];
- decimal['pl-Pl'] = decimal['pl-PL'];
+var default_fqdn_options = {
+ require_tld: true,
+ allow_underscores: false,
+ allow_trailing_dot: false
+};
+function isFQDN(str, options) {
+ assertString(str);
+ options = merge(options, default_fqdn_options);
+ /* Remove the optional trailing dot before checking validity */
- function isFloat(str, options) {
- assertString(str);
- options = options || {};
+ if (options.allow_trailing_dot && str[str.length - 1] === '.') {
+ str = str.substring(0, str.length - 1);
+ }
- var _float = new RegExp("^(?:[-+])?(?:[0-9]+)?(?:\\".concat(options.locale ? decimal[options.locale] : '.', "[0-9]*)?(?:[eE][\\+\\-]?(?:[0-9]+))?$"));
+ var parts = str.split('.');
- if (str === '' || str === '.' || str === '-' || str === '+') {
+ for (var i = 0; i < parts.length; i++) {
+ if (parts[i].length > 63) {
return false;
}
-
- var value = parseFloat(str.replace(',', '.'));
- return _float.test(str) && (!options.hasOwnProperty('min') || value >= options.min) && (!options.hasOwnProperty('max') || value <= options.max) && (!options.hasOwnProperty('lt') || value < options.lt) && (!options.hasOwnProperty('gt') || value > options.gt);
}
- var locales = Object.keys(decimal);
- function toFloat(str) {
- if (!isFloat(str)) return NaN;
- return parseFloat(str);
- }
+ if (options.require_tld) {
+ var tld = parts.pop();
- function toInt(str, radix) {
- assertString(str);
- return parseInt(str, radix || 10);
- }
+ if (!parts.length || !/^([a-z\u00a1-\uffff]{2,}|xn[a-z0-9-]{2,})$/i.test(tld)) {
+ return false;
+ } // disallow spaces && special characers
- function toBoolean(str, strict) {
- assertString(str);
- if (strict) {
- return str === '1' || /^true$/i.test(str);
+ if (/[\s\u2002-\u200B\u202F\u205F\u3000\uFEFF\uDB40\uDC20\u00A9\uFFFD]/.test(tld)) {
+ return false;
}
-
- return str !== '0' && !/^false$/i.test(str) && str !== '';
}
- function equals(str, comparison) {
- assertString(str);
- return str === comparison;
- }
+ for (var part, _i = 0; _i < parts.length; _i++) {
+ part = parts[_i];
- function toString$1(input) {
- if (_typeof(input) === 'object' && input !== null) {
- if (typeof input.toString === 'function') {
- input = input.toString();
- } else {
- input = '[object Object]';
- }
- } else if (input === null || typeof input === 'undefined' || isNaN(input) && !input.length) {
- input = '';
+ if (options.allow_underscores) {
+ part = part.replace(/_/g, '');
}
- return String(input);
- }
+ if (!/^[a-z\u00a1-\uffff0-9-]+$/i.test(part)) {
+ return false;
+ } // disallow full-width chars
- function merge() {
- var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- var defaults = arguments.length > 1 ? arguments[1] : undefined;
- for (var key in defaults) {
- if (typeof obj[key] === 'undefined') {
- obj[key] = defaults[key];
- }
+ if (/[\uff01-\uff5e]/.test(part)) {
+ return false;
}
- return obj;
- }
-
- var defaulContainsOptions = {
- ignoreCase: false
- };
- function contains(str, elem, options) {
- assertString(str);
- options = merge(options, defaulContainsOptions);
- return options.ignoreCase ? str.toLowerCase().indexOf(toString$1(elem).toLowerCase()) >= 0 : str.indexOf(toString$1(elem)) >= 0;
- }
-
- function matches(str, pattern, modifiers) {
- assertString(str);
-
- if (Object.prototype.toString.call(pattern) !== '[object RegExp]') {
- pattern = new RegExp(pattern, modifiers);
+ if (part[0] === '-' || part[part.length - 1] === '-') {
+ return false;
}
-
- return pattern.test(str);
}
- /* eslint-disable prefer-rest-params */
+ return true;
+}
- function isByteLength(str, options) {
- assertString(str);
- var min;
- var max;
+/**
+11.3. Examples
- if (_typeof(options) === 'object') {
- min = options.min || 0;
- max = options.max;
- } else {
- // backwards compatibility: isByteLength(str, min [, max])
- min = arguments[1];
- max = arguments[2];
- }
+ The following addresses
- var len = encodeURI(str).split(/%..|./).length - 1;
- return len >= min && (typeof max === 'undefined' || len <= max);
- }
+ fe80::1234 (on the 1st link of the node)
+ ff02::5678 (on the 5th link of the node)
+ ff08::9abc (on the 10th organization of the node)
- var default_fqdn_options = {
- require_tld: true,
- allow_underscores: false,
- allow_trailing_dot: false
- };
- function isFQDN(str, options) {
- assertString(str);
- options = merge(options, default_fqdn_options);
- /* Remove the optional trailing dot before checking validity */
+ would be represented as follows:
- if (options.allow_trailing_dot && str[str.length - 1] === '.') {
- str = str.substring(0, str.length - 1);
- }
+ fe80::1234%1
+ ff02::5678%5
+ ff08::9abc%10
- var parts = str.split('.');
+ (Here we assume a natural translation from a zone index to the
+ part, where the Nth zone of any scope is translated into
+ "N".)
- for (var i = 0; i < parts.length; i++) {
- if (parts[i].length > 63) {
- return false;
- }
- }
+ If we use interface names as , those addresses could also be
+ represented as follows:
- if (options.require_tld) {
- var tld = parts.pop();
+ fe80::1234%ne0
+ ff02::5678%pvc1.3
+ ff08::9abc%interface10
- if (!parts.length || !/^([a-z\u00a1-\uffff]{2,}|xn[a-z0-9-]{2,})$/i.test(tld)) {
- return false;
- } // disallow spaces && special characers
+ where the interface "ne0" belongs to the 1st link, "pvc1.3" belongs
+ to the 5th link, and "interface10" belongs to the 10th organization.
+ * * */
+var ipv4Maybe = /^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/;
+var ipv6Block = /^[0-9A-F]{1,4}$/i;
+function isIP(str) {
+ var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+ assertString(str);
+ version = String(version);
- if (/[\s\u2002-\u200B\u202F\u205F\u3000\uFEFF\uDB40\uDC20\u00A9\uFFFD]/.test(tld)) {
- return false;
- }
+ if (!version) {
+ return isIP(str, 4) || isIP(str, 6);
+ } else if (version === '4') {
+ if (!ipv4Maybe.test(str)) {
+ return false;
}
- for (var part, _i = 0; _i < parts.length; _i++) {
- part = parts[_i];
+ var parts = str.split('.').sort(function (a, b) {
+ return a - b;
+ });
+ return parts[3] <= 255;
+ } else if (version === '6') {
+ var addressAndZone = [str]; // ipv6 addresses could have scoped architecture
+ // according to https://tools.ietf.org/html/rfc4007#section-11
- if (options.allow_underscores) {
- part = part.replace(/_/g, '');
- }
+ if (str.includes('%')) {
+ addressAndZone = str.split('%');
- if (!/^[a-z\u00a1-\uffff0-9-]+$/i.test(part)) {
+ if (addressAndZone.length !== 2) {
+ // it must be just two parts
return false;
- } // disallow full-width chars
-
+ }
- if (/[\uff01-\uff5e]/.test(part)) {
+ if (!addressAndZone[0].includes(':')) {
+ // the first part must be the address
return false;
}
- if (part[0] === '-' || part[part.length - 1] === '-') {
+ if (addressAndZone[1] === '') {
+ // the second part must not be empty
return false;
}
}
- return true;
- }
-
- /**
- 11.3. Examples
-
- The following addresses
-
- fe80::1234 (on the 1st link of the node)
- ff02::5678 (on the 5th link of the node)
- ff08::9abc (on the 10th organization of the node)
-
- would be represented as follows:
-
- fe80::1234%1
- ff02::5678%5
- ff08::9abc%10
-
- (Here we assume a natural translation from a zone index to the
- part, where the Nth zone of any scope is translated into
- "N".)
-
- If we use interface names as , those addresses could also be
- represented as follows:
-
- fe80::1234%ne0
- ff02::5678%pvc1.3
- ff08::9abc%interface10
-
- where the interface "ne0" belongs to the 1st link, "pvc1.3" belongs
- to the 5th link, and "interface10" belongs to the 10th organization.
- * * */
-
- var ipv4Maybe = /^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/;
- var ipv6Block = /^[0-9A-F]{1,4}$/i;
- function isIP(str) {
- var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- assertString(str);
- version = String(version);
-
- if (!version) {
- return isIP(str, 4) || isIP(str, 6);
- } else if (version === '4') {
- if (!ipv4Maybe.test(str)) {
- return false;
- }
+ var blocks = addressAndZone[0].split(':');
+ var foundOmissionBlock = false; // marker to indicate ::
+ // At least some OS accept the last 32 bits of an IPv6 address
+ // (i.e. 2 of the blocks) in IPv4 notation, and RFC 3493 says
+ // that '::ffff:a.b.c.d' is valid for IPv4-mapped IPv6 addresses,
+ // and '::a.b.c.d' is deprecated, but also valid.
- var parts = str.split('.').sort(function (a, b) {
- return a - b;
- });
- return parts[3] <= 255;
- } else if (version === '6') {
- var addressAndZone = [str]; // ipv6 addresses could have scoped architecture
- // according to https://tools.ietf.org/html/rfc4007#section-11
+ var foundIPv4TransitionBlock = isIP(blocks[blocks.length - 1], 4);
+ var expectedNumberOfBlocks = foundIPv4TransitionBlock ? 7 : 8;
- if (str.includes('%')) {
- addressAndZone = str.split('%');
+ if (blocks.length > expectedNumberOfBlocks) {
+ return false;
+ } // initial or final ::
- if (addressAndZone.length !== 2) {
- // it must be just two parts
- return false;
- }
- if (!addressAndZone[0].includes(':')) {
- // the first part must be the address
- return false;
+ if (str === '::') {
+ return true;
+ } else if (str.substr(0, 2) === '::') {
+ blocks.shift();
+ blocks.shift();
+ foundOmissionBlock = true;
+ } else if (str.substr(str.length - 2) === '::') {
+ blocks.pop();
+ blocks.pop();
+ foundOmissionBlock = true;
+ }
+
+ for (var i = 0; i < blocks.length; ++i) {
+ // test for a :: which can not be at the string start/end
+ // since those cases have been handled above
+ if (blocks[i] === '' && i > 0 && i < blocks.length - 1) {
+ if (foundOmissionBlock) {
+ return false; // multiple :: in address
}
- if (addressAndZone[1] === '') {
- // the second part must not be empty
- return false;
- }
+ foundOmissionBlock = true;
+ } else if (foundIPv4TransitionBlock && i === blocks.length - 1) {// it has been checked before that the last
+ // block is a valid IPv4 address
+ } else if (!ipv6Block.test(blocks[i])) {
+ return false;
}
+ }
- var blocks = addressAndZone[0].split(':');
- var foundOmissionBlock = false; // marker to indicate ::
- // At least some OS accept the last 32 bits of an IPv6 address
- // (i.e. 2 of the blocks) in IPv4 notation, and RFC 3493 says
- // that '::ffff:a.b.c.d' is valid for IPv4-mapped IPv6 addresses,
- // and '::a.b.c.d' is deprecated, but also valid.
+ if (foundOmissionBlock) {
+ return blocks.length >= 1;
+ }
- var foundIPv4TransitionBlock = isIP(blocks[blocks.length - 1], 4);
- var expectedNumberOfBlocks = foundIPv4TransitionBlock ? 7 : 8;
+ return blocks.length === expectedNumberOfBlocks;
+ }
- if (blocks.length > expectedNumberOfBlocks) {
- return false;
- } // initial or final ::
+ return false;
+}
+var default_email_options = {
+ allow_display_name: false,
+ require_display_name: false,
+ allow_utf8_local_part: true,
+ require_tld: true,
+ ignore_max_length: false
+};
+/* eslint-disable max-len */
- if (str === '::') {
- return true;
- } else if (str.substr(0, 2) === '::') {
- blocks.shift();
- blocks.shift();
- foundOmissionBlock = true;
- } else if (str.substr(str.length - 2) === '::') {
- blocks.pop();
- blocks.pop();
- foundOmissionBlock = true;
- }
+/* eslint-disable no-control-regex */
- for (var i = 0; i < blocks.length; ++i) {
- // test for a :: which can not be at the string start/end
- // since those cases have been handled above
- if (blocks[i] === '' && i > 0 && i < blocks.length - 1) {
- if (foundOmissionBlock) {
- return false; // multiple :: in address
- }
-
- foundOmissionBlock = true;
- } else if (foundIPv4TransitionBlock && i === blocks.length - 1) {// it has been checked before that the last
- // block is a valid IPv4 address
- } else if (!ipv6Block.test(blocks[i])) {
- return false;
- }
- }
+var splitNameAddress = /^([^\x00-\x1F\x7F-\x9F\cX]+)<(.+)>$/i;
+var emailUserPart = /^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~]+$/i;
+var gmailUserPart = /^[a-z\d]+$/;
+var quotedEmailUser = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f]))*$/i;
+var emailUserUtf8Part = /^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+$/i;
+var quotedEmailUserUtf8 = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))*$/i;
+var defaultMaxEmailLength = 254;
+/* eslint-enable max-len */
- if (foundOmissionBlock) {
- return blocks.length >= 1;
- }
+/* eslint-enable no-control-regex */
- return blocks.length === expectedNumberOfBlocks;
- }
+/**
+ * Validate display name according to the RFC2822: https://tools.ietf.org/html/rfc2822#appendix-A.1.2
+ * @param {String} display_name
+ */
- return false;
- }
+function validateDisplayName(display_name) {
+ var trim_quotes = display_name.match(/^"(.+)"$/i);
+ var display_name_without_quotes = trim_quotes ? trim_quotes[1] : display_name; // display name with only spaces is not valid
- var default_email_options = {
- allow_display_name: false,
- require_display_name: false,
- allow_utf8_local_part: true,
- require_tld: true,
- ignore_max_length: false
- };
- /* eslint-disable max-len */
+ if (!display_name_without_quotes.trim()) {
+ return false;
+ } // check whether display name contains illegal character
- /* eslint-disable no-control-regex */
- var splitNameAddress = /^([^\x00-\x1F\x7F-\x9F\cX]+)<(.+)>$/i;
- var emailUserPart = /^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~]+$/i;
- var gmailUserPart = /^[a-z\d]+$/;
- var quotedEmailUser = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f]))*$/i;
- var emailUserUtf8Part = /^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+$/i;
- var quotedEmailUserUtf8 = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))*$/i;
- var defaultMaxEmailLength = 254;
- /* eslint-enable max-len */
+ var contains_illegal = /[\.";<>]/.test(display_name_without_quotes);
- /* eslint-enable no-control-regex */
+ if (contains_illegal) {
+ // if contains illegal characters,
+ // must to be enclosed in double-quotes, otherwise it's not a valid display name
+ if (!trim_quotes) {
+ return false;
+ } // the quotes in display name must start with character symbol \
- /**
- * Validate display name according to the RFC2822: https://tools.ietf.org/html/rfc2822#appendix-A.1.2
- * @param {String} display_name
- */
- function validateDisplayName(display_name) {
- var trim_quotes = display_name.match(/^"(.+)"$/i);
- var display_name_without_quotes = trim_quotes ? trim_quotes[1] : display_name; // display name with only spaces is not valid
+ var all_start_with_back_slash = display_name_without_quotes.split('"').length === display_name_without_quotes.split('\\"').length;
- if (!display_name_without_quotes.trim()) {
+ if (!all_start_with_back_slash) {
return false;
- } // check whether display name contains illegal character
+ }
+ }
+ return true;
+}
- var contains_illegal = /[\.";<>]/.test(display_name_without_quotes);
+function isEmail(str, options) {
+ assertString(str);
+ options = merge(options, default_email_options);
- if (contains_illegal) {
- // if contains illegal characters,
- // must to be enclosed in double-quotes, otherwise it's not a valid display name
- if (!trim_quotes) {
- return false;
- } // the quotes in display name must start with character symbol \
+ if (options.require_display_name || options.allow_display_name) {
+ var display_email = str.match(splitNameAddress);
+
+ if (display_email) {
+ var display_name;
+ var _display_email = _slicedToArray(display_email, 3);
- var all_start_with_back_slash = display_name_without_quotes.split('"').length === display_name_without_quotes.split('\\"').length;
+ display_name = _display_email[1];
+ str = _display_email[2];
+
+ // sometimes need to trim the last space to get the display name
+ // because there may be a space between display name and email address
+ // eg. myname
+ // the display name is `myname` instead of `myname `, so need to trim the last space
+ if (display_name.endsWith(' ')) {
+ display_name = display_name.substr(0, display_name.length - 1);
+ }
- if (!all_start_with_back_slash) {
+ if (!validateDisplayName(display_name)) {
return false;
}
+ } else if (options.require_display_name) {
+ return false;
}
-
- return true;
}
- function isEmail(str, options) {
- assertString(str);
- options = merge(options, default_email_options);
+ if (!options.ignore_max_length && str.length > defaultMaxEmailLength) {
+ return false;
+ }
- if (options.require_display_name || options.allow_display_name) {
- var display_email = str.match(splitNameAddress);
+ var parts = str.split('@');
+ var domain = parts.pop();
+ var user = parts.join('@');
+ var lower_domain = domain.toLowerCase();
- if (display_email) {
- var display_name;
+ if (options.domain_specific_validation && (lower_domain === 'gmail.com' || lower_domain === 'googlemail.com')) {
+ /*
+ Previously we removed dots for gmail addresses before validating.
+ This was removed because it allows `multiple..dots@gmail.com`
+ to be reported as valid, but it is not.
+ Gmail only normalizes single dots, removing them from here is pointless,
+ should be done in normalizeEmail
+ */
+ user = user.toLowerCase(); // Removing sub-address from username before gmail validation
- var _display_email = _slicedToArray(display_email, 3);
+ var username = user.split('+')[0]; // Dots are not included in gmail length restriction
- display_name = _display_email[1];
- str = _display_email[2];
+ if (!isByteLength(username.replace('.', ''), {
+ min: 6,
+ max: 30
+ })) {
+ return false;
+ }
- // sometimes need to trim the last space to get the display name
- // because there may be a space between display name and email address
- // eg. myname
- // the display name is `myname` instead of `myname `, so need to trim the last space
- if (display_name.endsWith(' ')) {
- display_name = display_name.substr(0, display_name.length - 1);
- }
+ var _user_parts = username.split('.');
- if (!validateDisplayName(display_name)) {
- return false;
- }
- } else if (options.require_display_name) {
+ for (var i = 0; i < _user_parts.length; i++) {
+ if (!gmailUserPart.test(_user_parts[i])) {
return false;
}
}
+ }
+
+ if (options.ignore_max_length === false && (!isByteLength(user, {
+ max: 64
+ }) || !isByteLength(domain, {
+ max: 254
+ }))) {
+ return false;
+ }
- if (!options.ignore_max_length && str.length > defaultMaxEmailLength) {
+ if (!isFQDN(domain, {
+ require_tld: options.require_tld
+ })) {
+ if (!options.allow_ip_domain) {
return false;
}
- var parts = str.split('@');
- var domain = parts.pop();
- var user = parts.join('@');
- var lower_domain = domain.toLowerCase();
-
- if (options.domain_specific_validation && (lower_domain === 'gmail.com' || lower_domain === 'googlemail.com')) {
- /*
- Previously we removed dots for gmail addresses before validating.
- This was removed because it allows `multiple..dots@gmail.com`
- to be reported as valid, but it is not.
- Gmail only normalizes single dots, removing them from here is pointless,
- should be done in normalizeEmail
- */
- user = user.toLowerCase(); // Removing sub-address from username before gmail validation
-
- var username = user.split('+')[0]; // Dots are not included in gmail length restriction
-
- if (!isByteLength(username.replace('.', ''), {
- min: 6,
- max: 30
- })) {
+ if (!isIP(domain)) {
+ if (!domain.startsWith('[') || !domain.endsWith(']')) {
return false;
}
- var _user_parts = username.split('.');
+ var noBracketdomain = domain.substr(1, domain.length - 2);
- for (var i = 0; i < _user_parts.length; i++) {
- if (!gmailUserPart.test(_user_parts[i])) {
- return false;
- }
+ if (noBracketdomain.length === 0 || !isIP(noBracketdomain)) {
+ return false;
}
}
+ }
+
+ if (user[0] === '"') {
+ user = user.slice(1, user.length - 1);
+ return options.allow_utf8_local_part ? quotedEmailUserUtf8.test(user) : quotedEmailUser.test(user);
+ }
+
+ var pattern = options.allow_utf8_local_part ? emailUserUtf8Part : emailUserPart;
+ var user_parts = user.split('.');
- if (options.ignore_max_length === false && (!isByteLength(user, {
- max: 64
- }) || !isByteLength(domain, {
- max: 254
- }))) {
+ for (var _i = 0; _i < user_parts.length; _i++) {
+ if (!pattern.test(user_parts[_i])) {
return false;
}
+ }
- if (!isFQDN(domain, {
- require_tld: options.require_tld
- })) {
- if (!options.allow_ip_domain) {
- return false;
- }
+ return true;
+}
- if (!isIP(domain)) {
- if (!domain.startsWith('[') || !domain.endsWith(']')) {
- return false;
- }
+/*
+options for isURL method
- var noBracketdomain = domain.substr(1, domain.length - 2);
+require_protocol - if set as true isURL will return false if protocol is not present in the URL
+require_valid_protocol - isURL will check if the URL's protocol is present in the protocols option
+protocols - valid protocols can be modified with this option
+require_host - if set as false isURL will not check if host is present in the URL
+require_port - if set as true isURL will check if port is present in the URL
+allow_protocol_relative_urls - if set as true protocol relative URLs will be allowed
+validate_length - if set as false isURL will skip string length validation (IE maximum is 2083)
- if (noBracketdomain.length === 0 || !isIP(noBracketdomain)) {
- return false;
- }
- }
- }
+*/
- if (user[0] === '"') {
- user = user.slice(1, user.length - 1);
- return options.allow_utf8_local_part ? quotedEmailUserUtf8.test(user) : quotedEmailUser.test(user);
- }
+var default_url_options = {
+ protocols: ['http', 'https', 'ftp'],
+ require_tld: true,
+ require_protocol: false,
+ require_host: true,
+ require_port: false,
+ require_valid_protocol: true,
+ allow_underscores: false,
+ allow_trailing_dot: false,
+ allow_protocol_relative_urls: false,
+ validate_length: true
+};
+var wrapped_ipv6 = /^\[([^\]]+)\](?::([0-9]+))?$/;
- var pattern = options.allow_utf8_local_part ? emailUserUtf8Part : emailUserPart;
- var user_parts = user.split('.');
+function isRegExp(obj) {
+ return Object.prototype.toString.call(obj) === '[object RegExp]';
+}
- for (var _i = 0; _i < user_parts.length; _i++) {
- if (!pattern.test(user_parts[_i])) {
- return false;
- }
- }
+function checkHost(host, matches) {
+ for (var i = 0; i < matches.length; i++) {
+ var match = matches[i];
- return true;
+ if (host === match || isRegExp(match) && match.test(host)) {
+ return true;
+ }
}
- /*
- options for isURL method
-
- require_protocol - if set as true isURL will return false if protocol is not present in the URL
- require_valid_protocol - isURL will check if the URL's protocol is present in the protocols option
- protocols - valid protocols can be modified with this option
- require_host - if set as false isURL will not check if host is present in the URL
- require_port - if set as true isURL will check if port is present in the URL
- allow_protocol_relative_urls - if set as true protocol relative URLs will be allowed
- validate_length - if set as false isURL will skip string length validation (IE maximum is 2083)
-
- */
-
- var default_url_options = {
- protocols: ['http', 'https', 'ftp'],
- require_tld: true,
- require_protocol: false,
- require_host: true,
- require_port: false,
- require_valid_protocol: true,
- allow_underscores: false,
- allow_trailing_dot: false,
- allow_protocol_relative_urls: false,
- validate_length: true
- };
- var wrapped_ipv6 = /^\[([^\]]+)\](?::([0-9]+))?$/;
+ return false;
+}
- function isRegExp(obj) {
- return Object.prototype.toString.call(obj) === '[object RegExp]';
+function isURL(url, options) {
+ assertString(url);
+
+ if (!url || /[\s<>]/.test(url)) {
+ return false;
}
- function checkHost(host, matches) {
- for (var i = 0; i < matches.length; i++) {
- var match = matches[i];
+ if (url.indexOf('mailto:') === 0) {
+ return false;
+ }
- if (host === match || isRegExp(match) && match.test(host)) {
- return true;
- }
- }
+ options = merge(options, default_url_options);
+ if (options.validate_length && url.length >= 2083) {
return false;
}
- function isURL(url, options) {
- assertString(url);
+ var protocol, auth, host, hostname, port, port_str, split, ipv6;
+ split = url.split('#');
+ url = split.shift();
+ split = url.split('?');
+ url = split.shift();
+ split = url.split('://');
- if (!url || /[\s<>]/.test(url)) {
- return false;
- }
+ if (split.length > 1) {
+ protocol = split.shift().toLowerCase();
- if (url.indexOf('mailto:') === 0) {
+ if (options.require_valid_protocol && options.protocols.indexOf(protocol) === -1) {
return false;
}
-
- options = merge(options, default_url_options);
-
- if (options.validate_length && url.length >= 2083) {
+ } else if (options.require_protocol) {
+ return false;
+ } else if (url.substr(0, 2) === '//') {
+ if (!options.allow_protocol_relative_urls) {
return false;
}
- var protocol, auth, host, hostname, port, port_str, split, ipv6;
- split = url.split('#');
- url = split.shift();
- split = url.split('?');
- url = split.shift();
- split = url.split('://');
+ split[0] = url.substr(2);
+ }
- if (split.length > 1) {
- protocol = split.shift().toLowerCase();
+ url = split.join('://');
- if (options.require_valid_protocol && options.protocols.indexOf(protocol) === -1) {
- return false;
- }
- } else if (options.require_protocol) {
- return false;
- } else if (url.substr(0, 2) === '//') {
- if (!options.allow_protocol_relative_urls) {
- return false;
- }
+ if (url === '') {
+ return false;
+ }
- split[0] = url.substr(2);
- }
+ split = url.split('/');
+ url = split.shift();
+
+ if (url === '' && !options.require_host) {
+ return true;
+ }
- url = split.join('://');
+ split = url.split('@');
- if (url === '') {
+ if (split.length > 1) {
+ if (options.disallow_auth) {
return false;
}
- split = url.split('/');
- url = split.shift();
+ auth = split.shift();
- if (url === '' && !options.require_host) {
- return true;
+ if (auth.indexOf(':') === -1 || auth.indexOf(':') >= 0 && auth.split(':').length > 2) {
+ return false;
}
+ }
- split = url.split('@');
-
- if (split.length > 1) {
- if (options.disallow_auth) {
- return false;
- }
+ hostname = split.join('@');
+ port_str = null;
+ ipv6 = null;
+ var ipv6_match = hostname.match(wrapped_ipv6);
- auth = split.shift();
+ if (ipv6_match) {
+ host = '';
+ ipv6 = ipv6_match[1];
+ port_str = ipv6_match[2] || null;
+ } else {
+ split = hostname.split(':');
+ host = split.shift();
- if (auth.indexOf(':') === -1 || auth.indexOf(':') >= 0 && auth.split(':').length > 2) {
- return false;
- }
+ if (split.length) {
+ port_str = split.join(':');
}
+ }
- hostname = split.join('@');
- port_str = null;
- ipv6 = null;
- var ipv6_match = hostname.match(wrapped_ipv6);
-
- if (ipv6_match) {
- host = '';
- ipv6 = ipv6_match[1];
- port_str = ipv6_match[2] || null;
- } else {
- split = hostname.split(':');
- host = split.shift();
+ if (port_str !== null) {
+ port = parseInt(port_str, 10);
- if (split.length) {
- port_str = split.join(':');
- }
+ if (!/^[0-9]+$/.test(port_str) || port <= 0 || port > 65535) {
+ return false;
}
+ } else if (options.require_port) {
+ return false;
+ }
- if (port_str !== null) {
- port = parseInt(port_str, 10);
+ if (!isIP(host) && !isFQDN(host, options) && (!ipv6 || !isIP(ipv6, 6))) {
+ return false;
+ }
- if (!/^[0-9]+$/.test(port_str) || port <= 0 || port > 65535) {
- return false;
- }
- } else if (options.require_port) {
- return false;
- }
+ host = host || ipv6;
- if (!isIP(host) && !isFQDN(host, options) && (!ipv6 || !isIP(ipv6, 6))) {
- return false;
- }
+ if (options.host_whitelist && !checkHost(host, options.host_whitelist)) {
+ return false;
+ }
- host = host || ipv6;
+ if (options.host_blacklist && checkHost(host, options.host_blacklist)) {
+ return false;
+ }
- if (options.host_whitelist && !checkHost(host, options.host_whitelist)) {
- return false;
- }
+ return true;
+}
- if (options.host_blacklist && checkHost(host, options.host_blacklist)) {
- return false;
- }
+var macAddress = /^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$/;
+var macAddressNoColons = /^([0-9a-fA-F]){12}$/;
+var macAddressWithHyphen = /^([0-9a-fA-F][0-9a-fA-F]-){5}([0-9a-fA-F][0-9a-fA-F])$/;
+var macAddressWithSpaces = /^([0-9a-fA-F][0-9a-fA-F]\s){5}([0-9a-fA-F][0-9a-fA-F])$/;
+var macAddressWithDots = /^([0-9a-fA-F]{4}).([0-9a-fA-F]{4}).([0-9a-fA-F]{4})$/;
+function isMACAddress(str, options) {
+ assertString(str);
- return true;
+ if (options && options.no_colons) {
+ return macAddressNoColons.test(str);
}
- var macAddress = /^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$/;
- var macAddressNoColons = /^([0-9a-fA-F]){12}$/;
- var macAddressWithHyphen = /^([0-9a-fA-F][0-9a-fA-F]-){5}([0-9a-fA-F][0-9a-fA-F])$/;
- var macAddressWithSpaces = /^([0-9a-fA-F][0-9a-fA-F]\s){5}([0-9a-fA-F][0-9a-fA-F])$/;
- var macAddressWithDots = /^([0-9a-fA-F]{4}).([0-9a-fA-F]{4}).([0-9a-fA-F]{4})$/;
- function isMACAddress(str, options) {
- assertString(str);
+ return macAddress.test(str) || macAddressWithHyphen.test(str) || macAddressWithSpaces.test(str) || macAddressWithDots.test(str);
+}
- if (options && options.no_colons) {
- return macAddressNoColons.test(str);
- }
+var subnetMaybe = /^\d{1,2}$/;
+function isIPRange(str) {
+ assertString(str);
+ var parts = str.split('/'); // parts[0] -> ip, parts[1] -> subnet
- return macAddress.test(str) || macAddressWithHyphen.test(str) || macAddressWithSpaces.test(str) || macAddressWithDots.test(str);
+ if (parts.length !== 2) {
+ return false;
}
- var subnetMaybe = /^\d{1,2}$/;
- function isIPRange(str) {
- assertString(str);
- var parts = str.split('/'); // parts[0] -> ip, parts[1] -> subnet
+ if (!subnetMaybe.test(parts[1])) {
+ return false;
+ } // Disallow preceding 0 i.e. 01, 02, ...
- if (parts.length !== 2) {
- return false;
- }
- if (!subnetMaybe.test(parts[1])) {
- return false;
- } // Disallow preceding 0 i.e. 01, 02, ...
+ if (parts[1].length > 1 && parts[1].startsWith('0')) {
+ return false;
+ }
+ return isIP(parts[0], 4) && parts[1] <= 32 && parts[1] >= 0;
+}
- if (parts[1].length > 1 && parts[1].startsWith('0')) {
- return false;
- }
+var default_date_options = {
+ format: 'YYYY/MM/DD',
+ delimiters: ['/', '-'],
+ strictMode: false
+};
- return isIP(parts[0], 4) && parts[1] <= 32 && parts[1] >= 0;
- }
+function isValidFormat(format) {
+ return /(^(y{4}|y{2})[\/-](m{1,2})[\/-](d{1,2})$)|(^(m{1,2})[\/-](d{1,2})[\/-]((y{4}|y{2})$))|(^(d{1,2})[\/-](m{1,2})[\/-]((y{4}|y{2})$))/gi.test(format);
+}
- var default_date_options = {
- format: 'YYYY/MM/DD',
- delimiters: ['/', '-'],
- strictMode: false
- };
+function zip(date, format) {
+ var zippedArr = [],
+ len = Math.min(date.length, format.length);
- function isValidFormat(format) {
- return /(^(y{4}|y{2})[\/-](m{1,2})[\/-](d{1,2})$)|(^(m{1,2})[\/-](d{1,2})[\/-]((y{4}|y{2})$))|(^(d{1,2})[\/-](m{1,2})[\/-]((y{4}|y{2})$))/gi.test(format);
+ for (var i = 0; i < len; i++) {
+ zippedArr.push([date[i], format[i]]);
}
- function zip(date, format) {
- var zippedArr = [],
- len = Math.min(date.length, format.length);
-
- for (var i = 0; i < len; i++) {
- zippedArr.push([date[i], format[i]]);
- }
+ return zippedArr;
+}
- return zippedArr;
+function isDate(input, options) {
+ if (typeof options === 'string') {
+ // Allow backward compatbility for old format isDate(input [, format])
+ options = merge({
+ format: options
+ }, default_date_options);
+ } else {
+ options = merge(options, default_date_options);
}
- function isDate(input, options) {
- if (typeof options === 'string') {
- // Allow backward compatbility for old format isDate(input [, format])
- options = merge({
- format: options
- }, default_date_options);
- } else {
- options = merge(options, default_date_options);
- }
-
- if (typeof input === 'string' && isValidFormat(options.format)) {
- var formatDelimiter = options.delimiters.find(function (delimiter) {
- return options.format.indexOf(delimiter) !== -1;
- });
- var dateDelimiter = options.strictMode ? formatDelimiter : options.delimiters.find(function (delimiter) {
- return input.indexOf(delimiter) !== -1;
- });
- var dateAndFormat = zip(input.split(dateDelimiter), options.format.toLowerCase().split(formatDelimiter));
- var dateObj = {};
+ if (typeof input === 'string' && isValidFormat(options.format)) {
+ var formatDelimiter = options.delimiters.find(function (delimiter) {
+ return options.format.indexOf(delimiter) !== -1;
+ });
+ var dateDelimiter = options.strictMode ? formatDelimiter : options.delimiters.find(function (delimiter) {
+ return input.indexOf(delimiter) !== -1;
+ });
+ var dateAndFormat = zip(input.split(dateDelimiter), options.format.toLowerCase().split(formatDelimiter));
+ var dateObj = {};
- var _iterator = _createForOfIteratorHelper(dateAndFormat),
+ var _iterator = _createForOfIteratorHelper(dateAndFormat),
_step;
- try {
- for (_iterator.s(); !(_step = _iterator.n()).done;) {
- var _step$value = _slicedToArray(_step.value, 2),
+ try {
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
+ var _step$value = _slicedToArray(_step.value, 2),
dateWord = _step$value[0],
formatWord = _step$value[1];
- if (dateWord.length !== formatWord.length) {
- return false;
- }
-
- dateObj[formatWord.charAt(0)] = dateWord;
+ if (dateWord.length !== formatWord.length) {
+ return false;
}
- } catch (err) {
- _iterator.e(err);
- } finally {
- _iterator.f();
- }
-
- return new Date("".concat(dateObj.m, "/").concat(dateObj.d, "/").concat(dateObj.y)).getDate() === +dateObj.d;
- }
- if (!options.strictMode) {
- return Object.prototype.toString.call(input) === '[object Date]' && isFinite(input);
+ dateObj[formatWord.charAt(0)] = dateWord;
+ }
+ } catch (err) {
+ _iterator.e(err);
+ } finally {
+ _iterator.f();
}
- return false;
+ return new Date("".concat(dateObj.m, "/").concat(dateObj.d, "/").concat(dateObj.y)).getDate() === +dateObj.d;
}
- function isBoolean(str) {
- assertString(str);
- return ['true', 'false', '1', '0'].indexOf(str) >= 0;
+ if (!options.strictMode) {
+ return Object.prototype.toString.call(input) === '[object Date]' && isFinite(input);
}
- var localeReg = /^[A-z]{2,4}([_-]([A-z]{4}|[\d]{3}))?([_-]([A-z]{2}|[\d]{3}))?$/;
- function isLocale(str) {
- assertString(str);
+ return false;
+}
- if (str === 'en_US_POSIX' || str === 'ca_ES_VALENCIA') {
- return true;
- }
+function isBoolean(str) {
+ assertString(str);
+ return ['true', 'false', '1', '0'].indexOf(str) >= 0;
+}
+
+var localeReg = /^[A-z]{2,4}([_-]([A-z]{4}|[\d]{3}))?([_-]([A-z]{2}|[\d]{3}))?$/;
+function isLocale(str) {
+ assertString(str);
- return localeReg.test(str);
+ if (str === 'en_US_POSIX' || str === 'ca_ES_VALENCIA') {
+ return true;
}
- function isAlpha(str) {
- var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
- assertString(str);
+ return localeReg.test(str);
+}
- if (locale in alpha) {
- return alpha[locale].test(str);
- }
+function isAlpha(str) {
+ var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
+ assertString(str);
- throw new Error("Invalid locale '".concat(locale, "'"));
+ if (locale in alpha) {
+ return alpha[locale].test(str);
}
- var locales$1 = Object.keys(alpha);
- function isAlphanumeric(str) {
- var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
- assertString(str);
+ throw new Error("Invalid locale '".concat(locale, "'"));
+}
+var locales$1 = Object.keys(alpha);
- if (locale in alphanumeric) {
- return alphanumeric[locale].test(str);
- }
+function isAlphanumeric(str) {
+ var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
+ assertString(str);
- throw new Error("Invalid locale '".concat(locale, "'"));
+ if (locale in alphanumeric) {
+ return alphanumeric[locale].test(str);
}
- var locales$2 = Object.keys(alphanumeric);
- var numericNoSymbols = /^[0-9]+$/;
- function isNumeric(str, options) {
- assertString(str);
+ throw new Error("Invalid locale '".concat(locale, "'"));
+}
+var locales$2 = Object.keys(alphanumeric);
- if (options && options.no_symbols) {
- return numericNoSymbols.test(str);
- }
+var numericNoSymbols = /^[0-9]+$/;
+function isNumeric(str, options) {
+ assertString(str);
- return new RegExp("^[+-]?([0-9]*[".concat((options || {}).locale ? decimal[options.locale] : '.', "])?[0-9]+$")).test(str);
+ if (options && options.no_symbols) {
+ return numericNoSymbols.test(str);
}
- /**
- * Reference:
- * https://en.wikipedia.org/ -- Wikipedia
- * https://docs.microsoft.com/en-us/microsoft-365/compliance/eu-passport-number -- EU Passport Number
- * https://countrycode.org/ -- Country Codes
- */
+ return new RegExp("^[+-]?([0-9]*[".concat((options || {}).locale ? decimal[options.locale] : '.', "])?[0-9]+$")).test(str);
+}
- var passportRegexByCountryCode = {
- AM: /^[A-Z]{2}\d{7}$/,
- // ARMENIA
- AR: /^[A-Z]{3}\d{6}$/,
- // ARGENTINA
- AT: /^[A-Z]\d{7}$/,
- // AUSTRIA
- AU: /^[A-Z]\d{7}$/,
- // AUSTRALIA
- BE: /^[A-Z]{2}\d{6}$/,
- // BELGIUM
- BG: /^\d{9}$/,
- // BULGARIA
- CA: /^[A-Z]{2}\d{6}$/,
- // CANADA
- CH: /^[A-Z]\d{7}$/,
- // SWITZERLAND
- CN: /^[GE]\d{8}$/,
- // CHINA [G=Ordinary, E=Electronic] followed by 8-digits
- CY: /^[A-Z](\d{6}|\d{8})$/,
- // CYPRUS
- CZ: /^\d{8}$/,
- // CZECH REPUBLIC
- DE: /^[CFGHJKLMNPRTVWXYZ0-9]{9}$/,
- // GERMANY
- DK: /^\d{9}$/,
- // DENMARK
- DZ: /^\d{9}$/,
- // ALGERIA
- EE: /^([A-Z]\d{7}|[A-Z]{2}\d{7})$/,
- // ESTONIA (K followed by 7-digits), e-passports have 2 UPPERCASE followed by 7 digits
- ES: /^[A-Z0-9]{2}([A-Z0-9]?)\d{6}$/,
- // SPAIN
- FI: /^[A-Z]{2}\d{7}$/,
- // FINLAND
- FR: /^\d{2}[A-Z]{2}\d{5}$/,
- // FRANCE
- GB: /^\d{9}$/,
- // UNITED KINGDOM
- GR: /^[A-Z]{2}\d{7}$/,
- // GREECE
- HR: /^\d{9}$/,
- // CROATIA
- HU: /^[A-Z]{2}(\d{6}|\d{7})$/,
- // HUNGARY
- IE: /^[A-Z0-9]{2}\d{7}$/,
- // IRELAND
- IN: /^[A-Z]{1}-?\d{7}$/,
- // INDIA
- IS: /^(A)\d{7}$/,
- // ICELAND
- IT: /^[A-Z0-9]{2}\d{7}$/,
- // ITALY
- JP: /^[A-Z]{2}\d{7}$/,
- // JAPAN
- KR: /^[MS]\d{8}$/,
- // SOUTH KOREA, REPUBLIC OF KOREA, [S=PS Passports, M=PM Passports]
- LT: /^[A-Z0-9]{8}$/,
- // LITHUANIA
- LU: /^[A-Z0-9]{8}$/,
- // LUXEMBURG
- LV: /^[A-Z0-9]{2}\d{7}$/,
- // LATVIA
- MT: /^\d{7}$/,
- // MALTA
- NL: /^[A-Z]{2}[A-Z0-9]{6}\d$/,
- // NETHERLANDS
- PO: /^[A-Z]{2}\d{7}$/,
- // POLAND
- PT: /^[A-Z]\d{6}$/,
- // PORTUGAL
- RO: /^\d{8,9}$/,
- // ROMANIA
- SE: /^\d{8}$/,
- // SWEDEN
- SL: /^(P)[A-Z]\d{7}$/,
- // SLOVANIA
- SK: /^[0-9A-Z]\d{7}$/,
- // SLOVAKIA
- TR: /^[A-Z]\d{8}$/,
- // TURKEY
- UA: /^[A-Z]{2}\d{6}$/,
- // UKRAINE
- US: /^\d{9}$/ // UNITED STATES
+/**
+ * Reference:
+ * https://en.wikipedia.org/ -- Wikipedia
+ * https://docs.microsoft.com/en-us/microsoft-365/compliance/eu-passport-number -- EU Passport Number
+ * https://countrycode.org/ -- Country Codes
+ */
- };
- /**
- * Check if str is a valid passport number
- * relative to provided ISO Country Code.
- *
- * @param {string} str
- * @param {string} countryCode
- * @return {boolean}
- */
+var passportRegexByCountryCode = {
+ AM: /^[A-Z]{2}\d{7}$/,
+ // ARMENIA
+ AR: /^[A-Z]{3}\d{6}$/,
+ // ARGENTINA
+ AT: /^[A-Z]\d{7}$/,
+ // AUSTRIA
+ AU: /^[A-Z]\d{7}$/,
+ // AUSTRALIA
+ BE: /^[A-Z]{2}\d{6}$/,
+ // BELGIUM
+ BG: /^\d{9}$/,
+ // BULGARIA
+ BY: /^[A-Z]{2}\d{7}$/,
+ // BELARUS
+ CA: /^[A-Z]{2}\d{6}$/,
+ // CANADA
+ CH: /^[A-Z]\d{7}$/,
+ // SWITZERLAND
+ CN: /^[GE]\d{8}$/,
+ // CHINA [G=Ordinary, E=Electronic] followed by 8-digits
+ CY: /^[A-Z](\d{6}|\d{8})$/,
+ // CYPRUS
+ CZ: /^\d{8}$/,
+ // CZECH REPUBLIC
+ DE: /^[CFGHJKLMNPRTVWXYZ0-9]{9}$/,
+ // GERMANY
+ DK: /^\d{9}$/,
+ // DENMARK
+ DZ: /^\d{9}$/,
+ // ALGERIA
+ EE: /^([A-Z]\d{7}|[A-Z]{2}\d{7})$/,
+ // ESTONIA (K followed by 7-digits), e-passports have 2 UPPERCASE followed by 7 digits
+ ES: /^[A-Z0-9]{2}([A-Z0-9]?)\d{6}$/,
+ // SPAIN
+ FI: /^[A-Z]{2}\d{7}$/,
+ // FINLAND
+ FR: /^\d{2}[A-Z]{2}\d{5}$/,
+ // FRANCE
+ GB: /^\d{9}$/,
+ // UNITED KINGDOM
+ GR: /^[A-Z]{2}\d{7}$/,
+ // GREECE
+ HR: /^\d{9}$/,
+ // CROATIA
+ HU: /^[A-Z]{2}(\d{6}|\d{7})$/,
+ // HUNGARY
+ IE: /^[A-Z0-9]{2}\d{7}$/,
+ // IRELAND
+ IN: /^[A-Z]{1}-?\d{7}$/,
+ // INDIA
+ IS: /^(A)\d{7}$/,
+ // ICELAND
+ IT: /^[A-Z0-9]{2}\d{7}$/,
+ // ITALY
+ JP: /^[A-Z]{2}\d{7}$/,
+ // JAPAN
+ KR: /^[MS]\d{8}$/,
+ // SOUTH KOREA, REPUBLIC OF KOREA, [S=PS Passports, M=PM Passports]
+ LT: /^[A-Z0-9]{8}$/,
+ // LITHUANIA
+ LU: /^[A-Z0-9]{8}$/,
+ // LUXEMBURG
+ LV: /^[A-Z0-9]{2}\d{7}$/,
+ // LATVIA
+ MT: /^\d{7}$/,
+ // MALTA
+ NL: /^[A-Z]{2}[A-Z0-9]{6}\d$/,
+ // NETHERLANDS
+ PO: /^[A-Z]{2}\d{7}$/,
+ // POLAND
+ PT: /^[A-Z]\d{6}$/,
+ // PORTUGAL
+ RO: /^\d{8,9}$/,
+ // ROMANIA
+ RU: /^\d{2}\d{2}\d{6}$/,
+ // RUSSIAN FEDERATION
+ SE: /^\d{8}$/,
+ // SWEDEN
+ SL: /^(P)[A-Z]\d{7}$/,
+ // SLOVANIA
+ SK: /^[0-9A-Z]\d{7}$/,
+ // SLOVAKIA
+ TR: /^[A-Z]\d{8}$/,
+ // TURKEY
+ UA: /^[A-Z]{2}\d{6}$/,
+ // UKRAINE
+ US: /^\d{9}$/ // UNITED STATES
+
+};
+/**
+ * Check if str is a valid passport number
+ * relative to provided ISO Country Code.
+ *
+ * @param {string} str
+ * @param {string} countryCode
+ * @return {boolean}
+ */
- function isPassportNumber(str, countryCode) {
- assertString(str);
- /** Remove All Whitespaces, Convert to UPPERCASE */
+function isPassportNumber(str, countryCode) {
+ assertString(str);
+ /** Remove All Whitespaces, Convert to UPPERCASE */
- var normalizedStr = str.replace(/\s/g, '').toUpperCase();
- return countryCode.toUpperCase() in passportRegexByCountryCode && passportRegexByCountryCode[countryCode].test(normalizedStr);
- }
+ var normalizedStr = str.replace(/\s/g, '').toUpperCase();
+ return countryCode.toUpperCase() in passportRegexByCountryCode && passportRegexByCountryCode[countryCode].test(normalizedStr);
+}
- var _int = /^(?:[-+]?(?:0|[1-9][0-9]*))$/;
- var intLeadingZeroes = /^[-+]?[0-9]+$/;
- function isInt(str, options) {
- assertString(str);
- options = options || {}; // Get the regex to use for testing, based on whether
- // leading zeroes are allowed or not.
+var _int = /^(?:[-+]?(?:0|[1-9][0-9]*))$/;
+var intLeadingZeroes = /^[-+]?[0-9]+$/;
+function isInt(str, options) {
+ assertString(str);
+ options = options || {}; // Get the regex to use for testing, based on whether
+ // leading zeroes are allowed or not.
- var regex = options.hasOwnProperty('allow_leading_zeroes') && !options.allow_leading_zeroes ? _int : intLeadingZeroes; // Check min/max/lt/gt
+ var regex = options.hasOwnProperty('allow_leading_zeroes') && !options.allow_leading_zeroes ? _int : intLeadingZeroes; // Check min/max/lt/gt
- var minCheckPassed = !options.hasOwnProperty('min') || str >= options.min;
- var maxCheckPassed = !options.hasOwnProperty('max') || str <= options.max;
- var ltCheckPassed = !options.hasOwnProperty('lt') || str < options.lt;
- var gtCheckPassed = !options.hasOwnProperty('gt') || str > options.gt;
- return regex.test(str) && minCheckPassed && maxCheckPassed && ltCheckPassed && gtCheckPassed;
- }
+ var minCheckPassed = !options.hasOwnProperty('min') || str >= options.min;
+ var maxCheckPassed = !options.hasOwnProperty('max') || str <= options.max;
+ var ltCheckPassed = !options.hasOwnProperty('lt') || str < options.lt;
+ var gtCheckPassed = !options.hasOwnProperty('gt') || str > options.gt;
+ return regex.test(str) && minCheckPassed && maxCheckPassed && ltCheckPassed && gtCheckPassed;
+}
- function isPort(str) {
- return isInt(str, {
- min: 0,
- max: 65535
- });
- }
+function isPort(str) {
+ return isInt(str, {
+ min: 0,
+ max: 65535
+ });
+}
- function isLowercase(str) {
- assertString(str);
- return str === str.toLowerCase();
- }
+function isLowercase(str) {
+ assertString(str);
+ return str === str.toLowerCase();
+}
- function isUppercase(str) {
- assertString(str);
- return str === str.toUpperCase();
- }
+function isUppercase(str) {
+ assertString(str);
+ return str === str.toUpperCase();
+}
- var imeiRegexWithoutHypens = /^[0-9]{15}$/;
- var imeiRegexWithHypens = /^\d{2}-\d{6}-\d{6}-\d{1}$/;
- function isIMEI(str, options) {
- assertString(str);
- options = options || {}; // default regex for checking imei is the one without hyphens
+var imeiRegexWithoutHypens = /^[0-9]{15}$/;
+var imeiRegexWithHypens = /^\d{2}-\d{6}-\d{6}-\d{1}$/;
+function isIMEI(str, options) {
+ assertString(str);
+ options = options || {}; // default regex for checking imei is the one without hyphens
- var imeiRegex = imeiRegexWithoutHypens;
+ var imeiRegex = imeiRegexWithoutHypens;
- if (options.allow_hyphens) {
- imeiRegex = imeiRegexWithHypens;
- }
+ if (options.allow_hyphens) {
+ imeiRegex = imeiRegexWithHypens;
+ }
- if (!imeiRegex.test(str)) {
- return false;
- }
+ if (!imeiRegex.test(str)) {
+ return false;
+ }
- str = str.replace(/-/g, '');
- var sum = 0,
+ str = str.replace(/-/g, '');
+ var sum = 0,
mul = 2,
l = 14;
- for (var i = 0; i < l; i++) {
- var digit = str.substring(l - i - 1, l - i);
- var tp = parseInt(digit, 10) * mul;
-
- if (tp >= 10) {
- sum += tp % 10 + 1;
- } else {
- sum += tp;
- }
+ for (var i = 0; i < l; i++) {
+ var digit = str.substring(l - i - 1, l - i);
+ var tp = parseInt(digit, 10) * mul;
- if (mul === 1) {
- mul += 1;
- } else {
- mul -= 1;
- }
+ if (tp >= 10) {
+ sum += tp % 10 + 1;
+ } else {
+ sum += tp;
}
- var chk = (10 - sum % 10) % 10;
-
- if (chk !== parseInt(str.substring(14, 15), 10)) {
- return false;
+ if (mul === 1) {
+ mul += 1;
+ } else {
+ mul -= 1;
}
+ }
- return true;
+ var chk = (10 - sum % 10) % 10;
+
+ if (chk !== parseInt(str.substring(14, 15), 10)) {
+ return false;
}
- /* eslint-disable no-control-regex */
+ return true;
+}
- var ascii = /^[\x00-\x7F]+$/;
- /* eslint-enable no-control-regex */
+/* eslint-disable no-control-regex */
- function isAscii(str) {
- assertString(str);
- return ascii.test(str);
- }
+var ascii = /^[\x00-\x7F]+$/;
+/* eslint-enable no-control-regex */
- var fullWidth = /[^\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
- function isFullWidth(str) {
- assertString(str);
- return fullWidth.test(str);
- }
+function isAscii(str) {
+ assertString(str);
+ return ascii.test(str);
+}
- var halfWidth = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
- function isHalfWidth(str) {
- assertString(str);
- return halfWidth.test(str);
- }
+var fullWidth = /[^\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
+function isFullWidth(str) {
+ assertString(str);
+ return fullWidth.test(str);
+}
- function isVariableWidth(str) {
- assertString(str);
- return fullWidth.test(str) && halfWidth.test(str);
- }
+var halfWidth = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
+function isHalfWidth(str) {
+ assertString(str);
+ return halfWidth.test(str);
+}
- /* eslint-disable no-control-regex */
+function isVariableWidth(str) {
+ assertString(str);
+ return fullWidth.test(str) && halfWidth.test(str);
+}
- var multibyte = /[^\x00-\x7F]/;
- /* eslint-enable no-control-regex */
+/* eslint-disable no-control-regex */
- function isMultibyte(str) {
- assertString(str);
- return multibyte.test(str);
- }
+var multibyte = /[^\x00-\x7F]/;
+/* eslint-enable no-control-regex */
+
+function isMultibyte(str) {
+ assertString(str);
+ return multibyte.test(str);
+}
+
+/**
+ * Build RegExp object from an array
+ * of multiple/multi-line regexp parts
+ *
+ * @param {string[]} parts
+ * @param {string} flags
+ * @return {object} - RegExp object
+ */
+function multilineRegexp(parts, flags) {
+ var regexpAsStringLiteral = parts.join('');
+ return new RegExp(regexpAsStringLiteral, flags);
+}
+
+/**
+ * Regular Expression to match
+ * semantic versioning (SemVer)
+ * built from multi-line, multi-parts regexp
+ * Reference: https://semver.org/
+ */
+
+var semanticVersioningRegex = multilineRegexp(['^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)', '(?:-((?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*))*))', '?(?:\\+([0-9a-z-]+(?:\\.[0-9a-z-]+)*))?$'], 'i');
+function isSemVer(str) {
+ assertString(str);
+ return semanticVersioningRegex.test(str);
+}
+
+var surrogatePair = /[\uD800-\uDBFF][\uDC00-\uDFFF]/;
+function isSurrogatePair(str) {
+ assertString(str);
+ return surrogatePair.test(str);
+}
+
+var includes = function includes(arr, val) {
+ return arr.some(function (arrVal) {
+ return val === arrVal;
+ });
+};
+
+function decimalRegExp(options) {
+ var regExp = new RegExp("^[-+]?([0-9]+)?(\\".concat(decimal[options.locale], "[0-9]{").concat(options.decimal_digits, "})").concat(options.force_decimal ? '' : '?', "$"));
+ return regExp;
+}
+
+var default_decimal_options = {
+ force_decimal: false,
+ decimal_digits: '1,',
+ locale: 'en-US'
+};
+var blacklist = ['', '-', '+'];
+function isDecimal(str, options) {
+ assertString(str);
+ options = merge(options, default_decimal_options);
+
+ if (options.locale in decimal) {
+ return !includes(blacklist, str.replace(/ /g, '')) && decimalRegExp(options).test(str);
+ }
+
+ throw new Error("Invalid locale '".concat(options.locale, "'"));
+}
+
+var hexadecimal = /^(0x|0h)?[0-9A-F]+$/i;
+function isHexadecimal(str) {
+ assertString(str);
+ return hexadecimal.test(str);
+}
+
+var octal = /^(0o)?[0-7]+$/i;
+function isOctal(str) {
+ assertString(str);
+ return octal.test(str);
+}
+
+function isDivisibleBy(str, num) {
+ assertString(str);
+ return toFloat(str) % parseInt(num, 10) === 0;
+}
+
+var hexcolor = /^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i;
+function isHexColor(str) {
+ assertString(str);
+ return hexcolor.test(str);
+}
+
+var rgbColor = /^rgb\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){2}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\)$/;
+var rgbaColor = /^rgba\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)$/;
+var rgbColorPercent = /^rgb\((([0-9]%|[1-9][0-9]%|100%),){2}([0-9]%|[1-9][0-9]%|100%)\)/;
+var rgbaColorPercent = /^rgba\((([0-9]%|[1-9][0-9]%|100%),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)/;
+function isRgbColor(str) {
+ var includePercentValues = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
+ assertString(str);
+
+ if (!includePercentValues) {
+ return rgbColor.test(str) || rgbaColor.test(str);
+ }
+
+ return rgbColor.test(str) || rgbaColor.test(str) || rgbColorPercent.test(str) || rgbaColorPercent.test(str);
+}
+
+var hslcomma = /^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s*)(\s*,\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(,\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i;
+var hslspace = /^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s)(\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(\/\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i;
+function isHSL(str) {
+ assertString(str);
+ return hslcomma.test(str) || hslspace.test(str);
+}
+
+var isrc = /^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/;
+function isISRC(str) {
+ assertString(str);
+ return isrc.test(str);
+}
+
+/**
+ * List of country codes with
+ * corresponding IBAN regular expression
+ * Reference: https://en.wikipedia.org/wiki/International_Bank_Account_Number
+ */
+
+var ibanRegexThroughCountryCode = {
+ AD: /^(AD[0-9]{2})\d{8}[A-Z0-9]{12}$/,
+ AE: /^(AE[0-9]{2})\d{3}\d{16}$/,
+ AL: /^(AL[0-9]{2})\d{8}[A-Z0-9]{16}$/,
+ AT: /^(AT[0-9]{2})\d{16}$/,
+ AZ: /^(AZ[0-9]{2})[A-Z0-9]{4}\d{20}$/,
+ BA: /^(BA[0-9]{2})\d{16}$/,
+ BE: /^(BE[0-9]{2})\d{12}$/,
+ BG: /^(BG[0-9]{2})[A-Z]{4}\d{6}[A-Z0-9]{8}$/,
+ BH: /^(BH[0-9]{2})[A-Z]{4}[A-Z0-9]{14}$/,
+ BR: /^(BR[0-9]{2})\d{23}[A-Z]{1}[A-Z0-9]{1}$/,
+ BY: /^(BY[0-9]{2})[A-Z0-9]{4}\d{20}$/,
+ CH: /^(CH[0-9]{2})\d{5}[A-Z0-9]{12}$/,
+ CR: /^(CR[0-9]{2})\d{18}$/,
+ CY: /^(CY[0-9]{2})\d{8}[A-Z0-9]{16}$/,
+ CZ: /^(CZ[0-9]{2})\d{20}$/,
+ DE: /^(DE[0-9]{2})\d{18}$/,
+ DK: /^(DK[0-9]{2})\d{14}$/,
+ DO: /^(DO[0-9]{2})[A-Z]{4}\d{20}$/,
+ EE: /^(EE[0-9]{2})\d{16}$/,
+ EG: /^(EG[0-9]{2})\d{25}$/,
+ ES: /^(ES[0-9]{2})\d{20}$/,
+ FI: /^(FI[0-9]{2})\d{14}$/,
+ FO: /^(FO[0-9]{2})\d{14}$/,
+ FR: /^(FR[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/,
+ GB: /^(GB[0-9]{2})[A-Z]{4}\d{14}$/,
+ GE: /^(GE[0-9]{2})[A-Z0-9]{2}\d{16}$/,
+ GI: /^(GI[0-9]{2})[A-Z]{4}[A-Z0-9]{15}$/,
+ GL: /^(GL[0-9]{2})\d{14}$/,
+ GR: /^(GR[0-9]{2})\d{7}[A-Z0-9]{16}$/,
+ GT: /^(GT[0-9]{2})[A-Z0-9]{4}[A-Z0-9]{20}$/,
+ HR: /^(HR[0-9]{2})\d{17}$/,
+ HU: /^(HU[0-9]{2})\d{24}$/,
+ IE: /^(IE[0-9]{2})[A-Z0-9]{4}\d{14}$/,
+ IL: /^(IL[0-9]{2})\d{19}$/,
+ IQ: /^(IQ[0-9]{2})[A-Z]{4}\d{15}$/,
+ IR: /^(IR[0-9]{2})0\d{2}0\d{18}$/,
+ IS: /^(IS[0-9]{2})\d{22}$/,
+ IT: /^(IT[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/,
+ JO: /^(JO[0-9]{2})[A-Z]{4}\d{22}$/,
+ KW: /^(KW[0-9]{2})[A-Z]{4}[A-Z0-9]{22}$/,
+ KZ: /^(KZ[0-9]{2})\d{3}[A-Z0-9]{13}$/,
+ LB: /^(LB[0-9]{2})\d{4}[A-Z0-9]{20}$/,
+ LC: /^(LC[0-9]{2})[A-Z]{4}[A-Z0-9]{24}$/,
+ LI: /^(LI[0-9]{2})\d{5}[A-Z0-9]{12}$/,
+ LT: /^(LT[0-9]{2})\d{16}$/,
+ LU: /^(LU[0-9]{2})\d{3}[A-Z0-9]{13}$/,
+ LV: /^(LV[0-9]{2})[A-Z]{4}[A-Z0-9]{13}$/,
+ MC: /^(MC[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/,
+ MD: /^(MD[0-9]{2})[A-Z0-9]{20}$/,
+ ME: /^(ME[0-9]{2})\d{18}$/,
+ MK: /^(MK[0-9]{2})\d{3}[A-Z0-9]{10}\d{2}$/,
+ MR: /^(MR[0-9]{2})\d{23}$/,
+ MT: /^(MT[0-9]{2})[A-Z]{4}\d{5}[A-Z0-9]{18}$/,
+ MU: /^(MU[0-9]{2})[A-Z]{4}\d{19}[A-Z]{3}$/,
+ NL: /^(NL[0-9]{2})[A-Z]{4}\d{10}$/,
+ NO: /^(NO[0-9]{2})\d{11}$/,
+ PK: /^(PK[0-9]{2})[A-Z0-9]{4}\d{16}$/,
+ PL: /^(PL[0-9]{2})\d{24}$/,
+ PS: /^(PS[0-9]{2})[A-Z0-9]{4}\d{21}$/,
+ PT: /^(PT[0-9]{2})\d{21}$/,
+ QA: /^(QA[0-9]{2})[A-Z]{4}[A-Z0-9]{21}$/,
+ RO: /^(RO[0-9]{2})[A-Z]{4}[A-Z0-9]{16}$/,
+ RS: /^(RS[0-9]{2})\d{18}$/,
+ SA: /^(SA[0-9]{2})\d{2}[A-Z0-9]{18}$/,
+ SC: /^(SC[0-9]{2})[A-Z]{4}\d{20}[A-Z]{3}$/,
+ SE: /^(SE[0-9]{2})\d{20}$/,
+ SI: /^(SI[0-9]{2})\d{15}$/,
+ SK: /^(SK[0-9]{2})\d{20}$/,
+ SM: /^(SM[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/,
+ SV: /^(SV[0-9]{2})[A-Z0-9]{4}\d{20}$/,
+ TL: /^(TL[0-9]{2})\d{19}$/,
+ TN: /^(TN[0-9]{2})\d{20}$/,
+ TR: /^(TR[0-9]{2})\d{5}[A-Z0-9]{17}$/,
+ UA: /^(UA[0-9]{2})\d{6}[A-Z0-9]{19}$/,
+ VA: /^(VA[0-9]{2})\d{18}$/,
+ VG: /^(VG[0-9]{2})[A-Z0-9]{4}\d{16}$/,
+ XK: /^(XK[0-9]{2})\d{16}$/
+};
+/**
+ * Check whether string has correct universal IBAN format
+ * The IBAN consists of up to 34 alphanumeric characters, as follows:
+ * Country Code using ISO 3166-1 alpha-2, two letters
+ * check digits, two digits and
+ * Basic Bank Account Number (BBAN), up to 30 alphanumeric characters.
+ * NOTE: Permitted IBAN characters are: digits [0-9] and the 26 latin alphabetic [A-Z]
+ *
+ * @param {string} str - string under validation
+ * @return {boolean}
+ */
- /**
- * Build RegExp object from an array
- * of multiple/multi-line regexp parts
+function hasValidIbanFormat(str) {
+ // Strip white spaces and hyphens
+ var strippedStr = str.replace(/[\s\-]+/gi, '').toUpperCase();
+ var isoCountryCode = strippedStr.slice(0, 2).toUpperCase();
+ return isoCountryCode in ibanRegexThroughCountryCode && ibanRegexThroughCountryCode[isoCountryCode].test(strippedStr);
+}
+/**
+ * Check whether string has valid IBAN Checksum
+ * by performing basic mod-97 operation and
+ * the remainder should equal 1
+ * -- Start by rearranging the IBAN by moving the four initial characters to the end of the string
+ * -- Replace each letter in the string with two digits, A -> 10, B = 11, Z = 35
+ * -- Interpret the string as a decimal integer and
+ * -- compute the remainder on division by 97 (mod 97)
+ * Reference: https://en.wikipedia.org/wiki/International_Bank_Account_Number
*
- * @param {string[]} parts
- * @param {string} flags
- * @return {object} - RegExp object
+ * @param {string} str
+ * @return {boolean}
*/
- function multilineRegexp(parts, flags) {
- var regexpAsStringLiteral = parts.join('');
- return new RegExp(regexpAsStringLiteral, flags);
- }
- /**
- * Regular Expression to match
- * semantic versioning (SemVer)
- * built from multi-line, multi-parts regexp
- * Reference: https://semver.org/
- */
- var semanticVersioningRegex = multilineRegexp(['^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)', '(?:-((?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*))*))', '?(?:\\+([0-9a-z-]+(?:\\.[0-9a-z-]+)*))?$'], 'i');
- function isSemVer(str) {
- assertString(str);
- return semanticVersioningRegex.test(str);
+function hasValidIbanChecksum(str) {
+ var strippedStr = str.replace(/[^A-Z0-9]+/gi, '').toUpperCase(); // Keep only digits and A-Z latin alphabetic
+
+ var rearranged = strippedStr.slice(4) + strippedStr.slice(0, 4);
+ var alphaCapsReplacedWithDigits = rearranged.replace(/[A-Z]/g, function (_char) {
+ return _char.charCodeAt(0) - 55;
+ });
+ var remainder = alphaCapsReplacedWithDigits.match(/\d{1,7}/g).reduce(function (acc, value) {
+ return Number(acc + value) % 97;
+ }, '');
+ return remainder === 1;
+}
+
+function isIBAN(str) {
+ assertString(str);
+ return hasValidIbanFormat(str) && hasValidIbanChecksum(str);
+}
+
+var isBICReg = /^[A-z]{4}[A-z]{2}\w{2}(\w{3})?$/;
+function isBIC(str) {
+ assertString(str);
+ return isBICReg.test(str);
+}
+
+var md5 = /^[a-f0-9]{32}$/;
+function isMD5(str) {
+ assertString(str);
+ return md5.test(str);
+}
+
+var lengths = {
+ md5: 32,
+ md4: 32,
+ sha1: 40,
+ sha256: 64,
+ sha384: 96,
+ sha512: 128,
+ ripemd128: 32,
+ ripemd160: 40,
+ tiger128: 32,
+ tiger160: 40,
+ tiger192: 48,
+ crc32: 8,
+ crc32b: 8
+};
+function isHash(str, algorithm) {
+ assertString(str);
+ var hash = new RegExp("^[a-fA-F0-9]{".concat(lengths[algorithm], "}$"));
+ return hash.test(str);
+}
+
+var notBase64 = /[^A-Z0-9+\/=]/i;
+var urlSafeBase64 = /^[A-Z0-9_\-]*$/i;
+var defaultBase64Options = {
+ urlSafe: false
+};
+function isBase64(str, options) {
+ assertString(str);
+ options = merge(options, defaultBase64Options);
+ var len = str.length;
+
+ if (options.urlSafe) {
+ return urlSafeBase64.test(str);
+ }
+
+ if (len % 4 !== 0 || notBase64.test(str)) {
+ return false;
}
- var surrogatePair = /[\uD800-\uDBFF][\uDC00-\uDFFF]/;
- function isSurrogatePair(str) {
- assertString(str);
- return surrogatePair.test(str);
+ var firstPaddingChar = str.indexOf('=');
+ return firstPaddingChar === -1 || firstPaddingChar === len - 1 || firstPaddingChar === len - 2 && str[len - 1] === '=';
+}
+
+function isJWT(str) {
+ assertString(str);
+ var dotSplit = str.split('.');
+ var len = dotSplit.length;
+
+ if (len > 3 || len < 2) {
+ return false;
}
- var includes = function includes(arr, val) {
- return arr.some(function (arrVal) {
- return val === arrVal;
+ return dotSplit.reduce(function (acc, currElem) {
+ return acc && isBase64(currElem, {
+ urlSafe: true
});
- };
+ }, true);
+}
+
+var default_json_options = {
+ allow_primitives: false
+};
+function isJSON(str, options) {
+ assertString(str);
+
+ try {
+ options = merge(options, default_json_options);
+ var primitives = [];
+
+ if (options.allow_primitives) {
+ primitives = [null, false, true];
+ }
+
+ var obj = JSON.parse(str);
+ return primitives.includes(obj) || !!obj && _typeof(obj) === 'object';
+ } catch (e) {
+ /* ignore */
+ }
+
+ return false;
+}
+
+var default_is_empty_options = {
+ ignore_whitespace: false
+};
+function isEmpty(str, options) {
+ assertString(str);
+ options = merge(options, default_is_empty_options);
+ return (options.ignore_whitespace ? str.trim().length : str.length) === 0;
+}
+
+/* eslint-disable prefer-rest-params */
+
+function isLength(str, options) {
+ assertString(str);
+ var min;
+ var max;
+
+ if (_typeof(options) === 'object') {
+ min = options.min || 0;
+ max = options.max;
+ } else {
+ // backwards compatibility: isLength(str, min [, max])
+ min = arguments[1] || 0;
+ max = arguments[2];
+ }
+
+ var surrogatePairs = str.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g) || [];
+ var len = str.length - surrogatePairs.length;
+ return len >= min && (typeof max === 'undefined' || len <= max);
+}
+
+var uuid = {
+ 3: /^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,
+ 4: /^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,
+ 5: /^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,
+ all: /^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i
+};
+function isUUID(str) {
+ var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'all';
+ assertString(str);
+ var pattern = uuid[version];
+ return pattern && pattern.test(str);
+}
+
+function isMongoId(str) {
+ assertString(str);
+ return isHexadecimal(str) && str.length === 24;
+}
+
+function isAfter(str) {
+ var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : String(new Date());
+ assertString(str);
+ var comparison = toDate(date);
+ var original = toDate(str);
+ return !!(original && comparison && original > comparison);
+}
+
+function isBefore(str) {
+ var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : String(new Date());
+ assertString(str);
+ var comparison = toDate(date);
+ var original = toDate(str);
+ return !!(original && comparison && original < comparison);
+}
+
+function isIn(str, options) {
+ assertString(str);
+ var i;
+
+ if (Object.prototype.toString.call(options) === '[object Array]') {
+ var array = [];
+
+ for (i in options) {
+ // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
+ // istanbul ignore else
+ if ({}.hasOwnProperty.call(options, i)) {
+ array[i] = toString$1(options[i]);
+ }
+ }
- function decimalRegExp(options) {
- var regExp = new RegExp("^[-+]?([0-9]+)?(\\".concat(decimal[options.locale], "[0-9]{").concat(options.decimal_digits, "})").concat(options.force_decimal ? '' : '?', "$"));
- return regExp;
+ return array.indexOf(str) >= 0;
+ } else if (_typeof(options) === 'object') {
+ return options.hasOwnProperty(str);
+ } else if (options && typeof options.indexOf === 'function') {
+ return options.indexOf(str) >= 0;
}
- var default_decimal_options = {
- force_decimal: false,
- decimal_digits: '1,',
- locale: 'en-US'
- };
- var blacklist = ['', '-', '+'];
- function isDecimal(str, options) {
- assertString(str);
- options = merge(options, default_decimal_options);
+ return false;
+}
- if (options.locale in decimal) {
- return !includes(blacklist, str.replace(/ /g, '')) && decimalRegExp(options).test(str);
- }
+/* eslint-disable max-len */
- throw new Error("Invalid locale '".concat(options.locale, "'"));
- }
+var creditCard = /^(?:4[0-9]{12}(?:[0-9]{3,6})?|5[1-5][0-9]{14}|(222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[01][0-9]|2720)[0-9]{12}|6(?:011|5[0-9][0-9])[0-9]{12,15}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11}|6[27][0-9]{14})$/;
+/* eslint-enable max-len */
- var hexadecimal = /^(0x|0h)?[0-9A-F]+$/i;
- function isHexadecimal(str) {
- assertString(str);
- return hexadecimal.test(str);
- }
+function isCreditCard(str) {
+ assertString(str);
+ var sanitized = str.replace(/[- ]+/g, '');
- var octal = /^(0o)?[0-7]+$/i;
- function isOctal(str) {
- assertString(str);
- return octal.test(str);
+ if (!creditCard.test(sanitized)) {
+ return false;
}
- function isDivisibleBy(str, num) {
- assertString(str);
- return toFloat(str) % parseInt(num, 10) === 0;
- }
+ var sum = 0;
+ var digit;
+ var tmpNum;
+ var shouldDouble;
- var hexcolor = /^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i;
- function isHexColor(str) {
- assertString(str);
- return hexcolor.test(str);
- }
+ for (var i = sanitized.length - 1; i >= 0; i--) {
+ digit = sanitized.substring(i, i + 1);
+ tmpNum = parseInt(digit, 10);
- var rgbColor = /^rgb\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){2}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\)$/;
- var rgbaColor = /^rgba\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)$/;
- var rgbColorPercent = /^rgb\((([0-9]%|[1-9][0-9]%|100%),){2}([0-9]%|[1-9][0-9]%|100%)\)/;
- var rgbaColorPercent = /^rgba\((([0-9]%|[1-9][0-9]%|100%),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)/;
- function isRgbColor(str) {
- var includePercentValues = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
- assertString(str);
+ if (shouldDouble) {
+ tmpNum *= 2;
- if (!includePercentValues) {
- return rgbColor.test(str) || rgbaColor.test(str);
+ if (tmpNum >= 10) {
+ sum += tmpNum % 10 + 1;
+ } else {
+ sum += tmpNum;
+ }
+ } else {
+ sum += tmpNum;
}
- return rgbColor.test(str) || rgbaColor.test(str) || rgbColorPercent.test(str) || rgbaColorPercent.test(str);
+ shouldDouble = !shouldDouble;
}
- var hslcomma = /^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s*)(\s*,\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(,\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i;
- var hslspace = /^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s)(\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(\/\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i;
- function isHSL(str) {
- assertString(str);
- return hslcomma.test(str) || hslspace.test(str);
- }
+ return !!(sum % 10 === 0 ? sanitized : false);
+}
- var isrc = /^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/;
- function isISRC(str) {
+var validators = {
+ ES: function ES(str) {
assertString(str);
- return isrc.test(str);
- }
-
- /**
- * List of country codes with
- * corresponding IBAN regular expression
- * Reference: https://en.wikipedia.org/wiki/International_Bank_Account_Number
- */
+ var DNI = /^[0-9X-Z][0-9]{7}[TRWAGMYFPDXBNJZSQVHLCKE]$/;
+ var charsValue = {
+ X: 0,
+ Y: 1,
+ Z: 2
+ };
+ var controlDigits = ['T', 'R', 'W', 'A', 'G', 'M', 'Y', 'F', 'P', 'D', 'X', 'B', 'N', 'J', 'Z', 'S', 'Q', 'V', 'H', 'L', 'C', 'K', 'E']; // sanitize user input
- var ibanRegexThroughCountryCode = {
- AD: /^(AD[0-9]{2})\d{8}[A-Z0-9]{12}$/,
- AE: /^(AE[0-9]{2})\d{3}\d{16}$/,
- AL: /^(AL[0-9]{2})\d{8}[A-Z0-9]{16}$/,
- AT: /^(AT[0-9]{2})\d{16}$/,
- AZ: /^(AZ[0-9]{2})[A-Z0-9]{4}\d{20}$/,
- BA: /^(BA[0-9]{2})\d{16}$/,
- BE: /^(BE[0-9]{2})\d{12}$/,
- BG: /^(BG[0-9]{2})[A-Z]{4}\d{6}[A-Z0-9]{8}$/,
- BH: /^(BH[0-9]{2})[A-Z]{4}[A-Z0-9]{14}$/,
- BR: /^(BR[0-9]{2})\d{23}[A-Z]{1}[A-Z0-9]{1}$/,
- BY: /^(BY[0-9]{2})[A-Z0-9]{4}\d{20}$/,
- CH: /^(CH[0-9]{2})\d{5}[A-Z0-9]{12}$/,
- CR: /^(CR[0-9]{2})\d{18}$/,
- CY: /^(CY[0-9]{2})\d{8}[A-Z0-9]{16}$/,
- CZ: /^(CZ[0-9]{2})\d{20}$/,
- DE: /^(DE[0-9]{2})\d{18}$/,
- DK: /^(DK[0-9]{2})\d{14}$/,
- DO: /^(DO[0-9]{2})[A-Z]{4}\d{20}$/,
- EE: /^(EE[0-9]{2})\d{16}$/,
- EG: /^(EG[0-9]{2})\d{25}$/,
- ES: /^(ES[0-9]{2})\d{20}$/,
- FI: /^(FI[0-9]{2})\d{14}$/,
- FO: /^(FO[0-9]{2})\d{14}$/,
- FR: /^(FR[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/,
- GB: /^(GB[0-9]{2})[A-Z]{4}\d{14}$/,
- GE: /^(GE[0-9]{2})[A-Z0-9]{2}\d{16}$/,
- GI: /^(GI[0-9]{2})[A-Z]{4}[A-Z0-9]{15}$/,
- GL: /^(GL[0-9]{2})\d{14}$/,
- GR: /^(GR[0-9]{2})\d{7}[A-Z0-9]{16}$/,
- GT: /^(GT[0-9]{2})[A-Z0-9]{4}[A-Z0-9]{20}$/,
- HR: /^(HR[0-9]{2})\d{17}$/,
- HU: /^(HU[0-9]{2})\d{24}$/,
- IE: /^(IE[0-9]{2})[A-Z0-9]{4}\d{14}$/,
- IL: /^(IL[0-9]{2})\d{19}$/,
- IQ: /^(IQ[0-9]{2})[A-Z]{4}\d{15}$/,
- IR: /^(IR[0-9]{2})0\d{2}0\d{18}$/,
- IS: /^(IS[0-9]{2})\d{22}$/,
- IT: /^(IT[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/,
- JO: /^(JO[0-9]{2})[A-Z]{4}\d{22}$/,
- KW: /^(KW[0-9]{2})[A-Z]{4}[A-Z0-9]{22}$/,
- KZ: /^(KZ[0-9]{2})\d{3}[A-Z0-9]{13}$/,
- LB: /^(LB[0-9]{2})\d{4}[A-Z0-9]{20}$/,
- LC: /^(LC[0-9]{2})[A-Z]{4}[A-Z0-9]{24}$/,
- LI: /^(LI[0-9]{2})\d{5}[A-Z0-9]{12}$/,
- LT: /^(LT[0-9]{2})\d{16}$/,
- LU: /^(LU[0-9]{2})\d{3}[A-Z0-9]{13}$/,
- LV: /^(LV[0-9]{2})[A-Z]{4}[A-Z0-9]{13}$/,
- MC: /^(MC[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/,
- MD: /^(MD[0-9]{2})[A-Z0-9]{20}$/,
- ME: /^(ME[0-9]{2})\d{18}$/,
- MK: /^(MK[0-9]{2})\d{3}[A-Z0-9]{10}\d{2}$/,
- MR: /^(MR[0-9]{2})\d{23}$/,
- MT: /^(MT[0-9]{2})[A-Z]{4}\d{5}[A-Z0-9]{18}$/,
- MU: /^(MU[0-9]{2})[A-Z]{4}\d{19}[A-Z]{3}$/,
- NL: /^(NL[0-9]{2})[A-Z]{4}\d{10}$/,
- NO: /^(NO[0-9]{2})\d{11}$/,
- PK: /^(PK[0-9]{2})[A-Z0-9]{4}\d{16}$/,
- PL: /^(PL[0-9]{2})\d{24}$/,
- PS: /^(PS[0-9]{2})[A-Z0-9]{4}\d{21}$/,
- PT: /^(PT[0-9]{2})\d{21}$/,
- QA: /^(QA[0-9]{2})[A-Z]{4}[A-Z0-9]{21}$/,
- RO: /^(RO[0-9]{2})[A-Z]{4}[A-Z0-9]{16}$/,
- RS: /^(RS[0-9]{2})\d{18}$/,
- SA: /^(SA[0-9]{2})\d{2}[A-Z0-9]{18}$/,
- SC: /^(SC[0-9]{2})[A-Z]{4}\d{20}[A-Z]{3}$/,
- SE: /^(SE[0-9]{2})\d{20}$/,
- SI: /^(SI[0-9]{2})\d{15}$/,
- SK: /^(SK[0-9]{2})\d{20}$/,
- SM: /^(SM[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/,
- SV: /^(SV[0-9]{2})[A-Z0-9]{4}\d{20}$/,
- TL: /^(TL[0-9]{2})\d{19}$/,
- TN: /^(TN[0-9]{2})\d{20}$/,
- TR: /^(TR[0-9]{2})\d{5}[A-Z0-9]{17}$/,
- UA: /^(UA[0-9]{2})\d{6}[A-Z0-9]{19}$/,
- VA: /^(VA[0-9]{2})\d{18}$/,
- VG: /^(VG[0-9]{2})[A-Z0-9]{4}\d{16}$/,
- XK: /^(XK[0-9]{2})\d{16}$/
- };
- /**
- * Check whether string has correct universal IBAN format
- * The IBAN consists of up to 34 alphanumeric characters, as follows:
- * Country Code using ISO 3166-1 alpha-2, two letters
- * check digits, two digits and
- * Basic Bank Account Number (BBAN), up to 30 alphanumeric characters.
- * NOTE: Permitted IBAN characters are: digits [0-9] and the 26 latin alphabetic [A-Z]
- *
- * @param {string} str - string under validation
- * @return {boolean}
- */
+ var sanitized = str.trim().toUpperCase(); // validate the data structure
- function hasValidIbanFormat(str) {
- // Strip white spaces and hyphens
- var strippedStr = str.replace(/[\s\-]+/gi, '').toUpperCase();
- var isoCountryCode = strippedStr.slice(0, 2).toUpperCase();
- return isoCountryCode in ibanRegexThroughCountryCode && ibanRegexThroughCountryCode[isoCountryCode].test(strippedStr);
- }
- /**
- * Check whether string has valid IBAN Checksum
- * by performing basic mod-97 operation and
- * the remainder should equal 1
- * -- Start by rearranging the IBAN by moving the four initial characters to the end of the string
- * -- Replace each letter in the string with two digits, A -> 10, B = 11, Z = 35
- * -- Interpret the string as a decimal integer and
- * -- compute the remainder on division by 97 (mod 97)
- * Reference: https://en.wikipedia.org/wiki/International_Bank_Account_Number
- *
- * @param {string} str
- * @return {boolean}
- */
-
-
- function hasValidIbanChecksum(str) {
- var strippedStr = str.replace(/[^A-Z0-9]+/gi, '').toUpperCase(); // Keep only digits and A-Z latin alphabetic
-
- var rearranged = strippedStr.slice(4) + strippedStr.slice(0, 4);
- var alphaCapsReplacedWithDigits = rearranged.replace(/[A-Z]/g, function (_char) {
- return _char.charCodeAt(0) - 55;
- });
- var remainder = alphaCapsReplacedWithDigits.match(/\d{1,7}/g).reduce(function (acc, value) {
- return Number(acc + value) % 97;
- }, '');
- return remainder === 1;
- }
+ if (!DNI.test(sanitized)) {
+ return false;
+ } // validate the control digit
- function isIBAN(str) {
- assertString(str);
- return hasValidIbanFormat(str) && hasValidIbanChecksum(str);
- }
- var isBICReg = /^[A-z]{4}[A-z]{2}\w{2}(\w{3})?$/;
- function isBIC(str) {
- assertString(str);
- return isBICReg.test(str);
- }
+ var number = sanitized.slice(0, -1).replace(/[X,Y,Z]/g, function (_char) {
+ return charsValue[_char];
+ });
+ return sanitized.endsWith(controlDigits[number % 23]);
+ },
+ IN: function IN(str) {
+ var DNI = /^[1-9]\d{3}\s?\d{4}\s?\d{4}$/; // multiplication table
- var md5 = /^[a-f0-9]{32}$/;
- function isMD5(str) {
- assertString(str);
- return md5.test(str);
- }
-
- var lengths = {
- md5: 32,
- md4: 32,
- sha1: 40,
- sha256: 64,
- sha384: 96,
- sha512: 128,
- ripemd128: 32,
- ripemd160: 40,
- tiger128: 32,
- tiger160: 40,
- tiger192: 48,
- crc32: 8,
- crc32b: 8
- };
- function isHash(str, algorithm) {
- assertString(str);
- var hash = new RegExp("^[a-fA-F0-9]{".concat(lengths[algorithm], "}$"));
- return hash.test(str);
- }
+ var d = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 2, 3, 4, 0, 6, 7, 8, 9, 5], [2, 3, 4, 0, 1, 7, 8, 9, 5, 6], [3, 4, 0, 1, 2, 8, 9, 5, 6, 7], [4, 0, 1, 2, 3, 9, 5, 6, 7, 8], [5, 9, 8, 7, 6, 0, 4, 3, 2, 1], [6, 5, 9, 8, 7, 1, 0, 4, 3, 2], [7, 6, 5, 9, 8, 2, 1, 0, 4, 3], [8, 7, 6, 5, 9, 3, 2, 1, 0, 4], [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]]; // permutation table
- var notBase64 = /[^A-Z0-9+\/=]/i;
- var urlSafeBase64 = /^[A-Z0-9_\-]*$/i;
- var defaultBase64Options = {
- urlSafe: false
- };
- function isBase64(str, options) {
- assertString(str);
- options = merge(options, defaultBase64Options);
- var len = str.length;
+ var p = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 5, 7, 6, 2, 8, 3, 0, 9, 4], [5, 8, 0, 3, 7, 9, 6, 1, 4, 2], [8, 9, 1, 6, 0, 4, 3, 5, 2, 7], [9, 4, 5, 3, 1, 2, 6, 8, 7, 0], [4, 2, 8, 6, 5, 7, 3, 9, 0, 1], [2, 7, 9, 3, 8, 0, 6, 4, 1, 5], [7, 0, 4, 6, 9, 1, 3, 2, 5, 8]]; // sanitize user input
- if (options.urlSafe) {
- return urlSafeBase64.test(str);
- }
+ var sanitized = str.trim(); // validate the data structure
- if (len % 4 !== 0 || notBase64.test(str)) {
+ if (!DNI.test(sanitized)) {
return false;
}
- var firstPaddingChar = str.indexOf('=');
- return firstPaddingChar === -1 || firstPaddingChar === len - 1 || firstPaddingChar === len - 2 && str[len - 1] === '=';
- }
+ var c = 0;
+ var invertedArray = sanitized.replace(/\s/g, '').split('').map(Number).reverse();
+ invertedArray.forEach(function (val, i) {
+ c = d[c][p[i % 8][val]];
+ });
+ return c === 0;
+ },
+ IT: function IT(str) {
+ if (str.length !== 9) return false;
+ if (str === 'CA00000AA') return false; // https://it.wikipedia.org/wiki/Carta_d%27identit%C3%A0_elettronica_italiana
+
+ return str.search(/C[A-Z][0-9]{5}[A-Z]{2}/i) > -1;
+ },
+ NO: function NO(str) {
+ var sanitized = str.trim();
+ if (isNaN(Number(sanitized))) return false;
+ if (sanitized.length !== 11) return false;
+ if (sanitized === '00000000000') return false; // https://no.wikipedia.org/wiki/F%C3%B8dselsnummer
+
+ var f = sanitized.split('').map(Number);
+ var k1 = (11 - (3 * f[0] + 7 * f[1] + 6 * f[2] + 1 * f[3] + 8 * f[4] + 9 * f[5] + 4 * f[6] + 5 * f[7] + 2 * f[8]) % 11) % 11;
+ var k2 = (11 - (5 * f[0] + 4 * f[1] + 3 * f[2] + 2 * f[3] + 7 * f[4] + 6 * f[5] + 5 * f[6] + 4 * f[7] + 3 * f[8] + 2 * k1) % 11) % 11;
+ if (k1 !== f[9] || k2 !== f[10]) return false;
+ return true;
+ },
+ 'he-IL': function heIL(str) {
+ var DNI = /^\d{9}$/; // sanitize user input
- function isJWT(str) {
- assertString(str);
- var dotSplit = str.split('.');
- var len = dotSplit.length;
+ var sanitized = str.trim(); // validate the data structure
- if (len > 3 || len < 2) {
+ if (!DNI.test(sanitized)) {
return false;
}
- return dotSplit.reduce(function (acc, currElem) {
- return acc && isBase64(currElem, {
- urlSafe: true
- });
- }, true);
- }
-
- var default_json_options = {
- allow_primitives: false
- };
- function isJSON(str, options) {
- assertString(str);
-
- try {
- options = merge(options, default_json_options);
- var primitives = [];
+ var id = sanitized;
+ var sum = 0,
+ incNum;
- if (options.allow_primitives) {
- primitives = [null, false, true];
- }
+ for (var i = 0; i < id.length; i++) {
+ incNum = Number(id[i]) * (i % 2 + 1); // Multiply number by 1 or 2
- var obj = JSON.parse(str);
- return primitives.includes(obj) || !!obj && _typeof(obj) === 'object';
- } catch (e) {
- /* ignore */
+ sum += incNum > 9 ? incNum - 9 : incNum; // Sum the digits up and add to total
}
- return false;
- }
-
- var default_is_empty_options = {
- ignore_whitespace: false
- };
- function isEmpty(str, options) {
- assertString(str);
- options = merge(options, default_is_empty_options);
- return (options.ignore_whitespace ? str.trim().length : str.length) === 0;
- }
+ return sum % 10 === 0;
+ },
+ 'ar-TN': function arTN(str) {
+ var DNI = /^\d{8}$/; // sanitize user input
- /* eslint-disable prefer-rest-params */
-
- function isLength(str, options) {
- assertString(str);
- var min;
- var max;
+ var sanitized = str.trim(); // validate the data structure
- if (_typeof(options) === 'object') {
- min = options.min || 0;
- max = options.max;
- } else {
- // backwards compatibility: isLength(str, min [, max])
- min = arguments[1] || 0;
- max = arguments[2];
+ if (!DNI.test(sanitized)) {
+ return false;
}
- var surrogatePairs = str.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g) || [];
- var len = str.length - surrogatePairs.length;
- return len >= min && (typeof max === 'undefined' || len <= max);
- }
+ return true;
+ },
+ 'zh-CN': function zhCN(str) {
+ var provincesAndCities = ['11', // 北京
+ '12', // 天津
+ '13', // 河北
+ '14', // 山西
+ '15', // 内蒙古
+ '21', // 辽宁
+ '22', // 吉林
+ '23', // 黑龙江
+ '31', // 上海
+ '32', // 江苏
+ '33', // 浙江
+ '34', // 安徽
+ '35', // 福建
+ '36', // 江西
+ '37', // 山东
+ '41', // 河南
+ '42', // 湖北
+ '43', // 湖南
+ '44', // 广东
+ '45', // 广西
+ '46', // 海南
+ '50', // 重庆
+ '51', // 四川
+ '52', // 贵州
+ '53', // 云南
+ '54', // 西藏
+ '61', // 陕西
+ '62', // 甘肃
+ '63', // 青海
+ '64', // 宁夏
+ '65', // 新疆
+ '71', // 台湾
+ '81', // 香港
+ '82', // 澳门
+ '91' // 国外
+ ];
+ var powers = ['7', '9', '10', '5', '8', '4', '2', '1', '6', '3', '7', '9', '10', '5', '8', '4', '2'];
+ var parityBit = ['1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'];
+
+ var checkAddressCode = function checkAddressCode(addressCode) {
+ return provincesAndCities.includes(addressCode);
+ };
- var uuid = {
- 3: /^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,
- 4: /^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,
- 5: /^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,
- all: /^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i
- };
- function isUUID(str) {
- var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'all';
- assertString(str);
- var pattern = uuid[version];
- return pattern && pattern.test(str);
- }
+ var checkBirthDayCode = function checkBirthDayCode(birDayCode) {
+ var yyyy = parseInt(birDayCode.substring(0, 4), 10);
+ var mm = parseInt(birDayCode.substring(4, 6), 10);
+ var dd = parseInt(birDayCode.substring(6), 10);
+ var xdata = new Date(yyyy, mm - 1, dd);
- function isMongoId(str) {
- assertString(str);
- return isHexadecimal(str) && str.length === 24;
- }
+ if (xdata > new Date()) {
+ return false; // eslint-disable-next-line max-len
+ } else if (xdata.getFullYear() === yyyy && xdata.getMonth() === mm - 1 && xdata.getDate() === dd) {
+ return true;
+ }
- function isAfter(str) {
- var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : String(new Date());
- assertString(str);
- var comparison = toDate(date);
- var original = toDate(str);
- return !!(original && comparison && original > comparison);
- }
+ return false;
+ };
- function isBefore(str) {
- var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : String(new Date());
- assertString(str);
- var comparison = toDate(date);
- var original = toDate(str);
- return !!(original && comparison && original < comparison);
- }
+ var getParityBit = function getParityBit(idCardNo) {
+ var id17 = idCardNo.substring(0, 17);
+ var power = 0;
- function isIn(str, options) {
- assertString(str);
- var i;
+ for (var i = 0; i < 17; i++) {
+ power += parseInt(id17.charAt(i), 10) * parseInt(powers[i], 10);
+ }
- if (Object.prototype.toString.call(options) === '[object Array]') {
- var array = [];
+ var mod = power % 11;
+ return parityBit[mod];
+ };
- for (i in options) {
- // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
- // istanbul ignore else
- if ({}.hasOwnProperty.call(options, i)) {
- array[i] = toString$1(options[i]);
- }
- }
+ var checkParityBit = function checkParityBit(idCardNo) {
+ return getParityBit(idCardNo) === idCardNo.charAt(17).toUpperCase();
+ };
- return array.indexOf(str) >= 0;
- } else if (_typeof(options) === 'object') {
- return options.hasOwnProperty(str);
- } else if (options && typeof options.indexOf === 'function') {
- return options.indexOf(str) >= 0;
- }
+ var check15IdCardNo = function check15IdCardNo(idCardNo) {
+ var check = /^[1-9]\d{7}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}$/.test(idCardNo);
+ if (!check) return false;
+ var addressCode = idCardNo.substring(0, 2);
+ check = checkAddressCode(addressCode);
+ if (!check) return false;
+ var birDayCode = "19".concat(idCardNo.substring(6, 12));
+ check = checkBirthDayCode(birDayCode);
+ if (!check) return false;
+ return true;
+ };
- return false;
- }
+ var check18IdCardNo = function check18IdCardNo(idCardNo) {
+ var check = /^[1-9]\d{5}[1-9]\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}(\d|x|X)$/.test(idCardNo);
+ if (!check) return false;
+ var addressCode = idCardNo.substring(0, 2);
+ check = checkAddressCode(addressCode);
+ if (!check) return false;
+ var birDayCode = idCardNo.substring(6, 14);
+ check = checkBirthDayCode(birDayCode);
+ if (!check) return false;
+ return checkParityBit(idCardNo);
+ };
- /* eslint-disable max-len */
+ var checkIdCardNo = function checkIdCardNo(idCardNo) {
+ var check = /^\d{15}|(\d{17}(\d|x|X))$/.test(idCardNo);
+ if (!check) return false;
- var creditCard = /^(?:4[0-9]{12}(?:[0-9]{3,6})?|5[1-5][0-9]{14}|(222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[01][0-9]|2720)[0-9]{12}|6(?:011|5[0-9][0-9])[0-9]{12,15}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11}|6[27][0-9]{14})$/;
- /* eslint-enable max-len */
+ if (idCardNo.length === 15) {
+ return check15IdCardNo(idCardNo);
+ }
- function isCreditCard(str) {
- assertString(str);
- var sanitized = str.replace(/[- ]+/g, '');
+ return check18IdCardNo(idCardNo);
+ };
- if (!creditCard.test(sanitized)) {
- return false;
- }
+ return checkIdCardNo(str);
+ },
+ 'zh-TW': function zhTW(str) {
+ var ALPHABET_CODES = {
+ A: 10,
+ B: 11,
+ C: 12,
+ D: 13,
+ E: 14,
+ F: 15,
+ G: 16,
+ H: 17,
+ I: 34,
+ J: 18,
+ K: 19,
+ L: 20,
+ M: 21,
+ N: 22,
+ O: 35,
+ P: 23,
+ Q: 24,
+ R: 25,
+ S: 26,
+ T: 27,
+ U: 28,
+ V: 29,
+ W: 32,
+ X: 30,
+ Y: 31,
+ Z: 33
+ };
+ var sanitized = str.trim().toUpperCase();
+ if (!/^[A-Z][0-9]{9}$/.test(sanitized)) return false;
+ return Array.from(sanitized).reduce(function (sum, number, index) {
+ if (index === 0) {
+ var code = ALPHABET_CODES[number];
+ return code % 10 * 9 + Math.floor(code / 10);
+ }
- var sum = 0;
- var digit;
- var tmpNum;
- var shouldDouble;
+ if (index === 9) {
+ return (10 - sum % 10 - Number(number)) % 10 === 0;
+ }
- for (var i = sanitized.length - 1; i >= 0; i--) {
- digit = sanitized.substring(i, i + 1);
- tmpNum = parseInt(digit, 10);
+ return sum + Number(number) * (9 - index);
+ }, 0);
+ }
+};
+function isIdentityCard(str, locale) {
+ assertString(str);
- if (shouldDouble) {
- tmpNum *= 2;
+ if (locale in validators) {
+ return validators[locale](str);
+ } else if (locale === 'any') {
+ for (var key in validators) {
+ // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
+ // istanbul ignore else
+ if (validators.hasOwnProperty(key)) {
+ var validator = validators[key];
- if (tmpNum >= 10) {
- sum += tmpNum % 10 + 1;
- } else {
- sum += tmpNum;
+ if (validator(str)) {
+ return true;
}
- } else {
- sum += tmpNum;
}
-
- shouldDouble = !shouldDouble;
}
- return !!(sum % 10 === 0 ? sanitized : false);
+ return false;
}
- var validators = {
- ES: function ES(str) {
- assertString(str);
- var DNI = /^[0-9X-Z][0-9]{7}[TRWAGMYFPDXBNJZSQVHLCKE]$/;
- var charsValue = {
- X: 0,
- Y: 1,
- Z: 2
- };
- var controlDigits = ['T', 'R', 'W', 'A', 'G', 'M', 'Y', 'F', 'P', 'D', 'X', 'B', 'N', 'J', 'Z', 'S', 'Q', 'V', 'H', 'L', 'C', 'K', 'E']; // sanitize user input
-
- var sanitized = str.trim().toUpperCase(); // validate the data structure
+ throw new Error("Invalid locale '".concat(locale, "'"));
+}
- if (!DNI.test(sanitized)) {
- return false;
- } // validate the control digit
+/**
+ * The most commonly used EAN standard is
+ * the thirteen-digit EAN-13, while the
+ * less commonly used 8-digit EAN-8 barcode was
+ * introduced for use on small packages.
+ * EAN consists of:
+ * GS1 prefix, manufacturer code, product code and check digit
+ * Reference: https://en.wikipedia.org/wiki/International_Article_Number
+ */
+/**
+ * Define EAN Lenghts; 8 for EAN-8; 13 for EAN-13
+ * and Regular Expression for valid EANs (EAN-8, EAN-13),
+ * with exact numberic matching of 8 or 13 digits [0-9]
+ */
+var LENGTH_EAN_8 = 8;
+var validEanRegex = /^(\d{8}|\d{13})$/;
+/**
+ * Get position weight given:
+ * EAN length and digit index/position
+ *
+ * @param {number} length
+ * @param {number} index
+ * @return {number}
+ */
- var number = sanitized.slice(0, -1).replace(/[X,Y,Z]/g, function (_char) {
- return charsValue[_char];
- });
- return sanitized.endsWith(controlDigits[number % 23]);
- },
- IN: function IN(str) {
- var DNI = /^[1-9]\d{3}\s?\d{4}\s?\d{4}$/; // multiplication table
+function getPositionWeightThroughLengthAndIndex(length, index) {
+ if (length === LENGTH_EAN_8) {
+ return index % 2 === 0 ? 3 : 1;
+ }
- var d = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 2, 3, 4, 0, 6, 7, 8, 9, 5], [2, 3, 4, 0, 1, 7, 8, 9, 5, 6], [3, 4, 0, 1, 2, 8, 9, 5, 6, 7], [4, 0, 1, 2, 3, 9, 5, 6, 7, 8], [5, 9, 8, 7, 6, 0, 4, 3, 2, 1], [6, 5, 9, 8, 7, 1, 0, 4, 3, 2], [7, 6, 5, 9, 8, 2, 1, 0, 4, 3], [8, 7, 6, 5, 9, 3, 2, 1, 0, 4], [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]]; // permutation table
+ return index % 2 === 0 ? 1 : 3;
+}
+/**
+ * Calculate EAN Check Digit
+ * Reference: https://en.wikipedia.org/wiki/International_Article_Number#Calculation_of_checksum_digit
+ *
+ * @param {string} ean
+ * @return {number}
+ */
- var p = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 5, 7, 6, 2, 8, 3, 0, 9, 4], [5, 8, 0, 3, 7, 9, 6, 1, 4, 2], [8, 9, 1, 6, 0, 4, 3, 5, 2, 7], [9, 4, 5, 3, 1, 2, 6, 8, 7, 0], [4, 2, 8, 6, 5, 7, 3, 9, 0, 1], [2, 7, 9, 3, 8, 0, 6, 4, 1, 5], [7, 0, 4, 6, 9, 1, 3, 2, 5, 8]]; // sanitize user input
- var sanitized = str.trim(); // validate the data structure
+function calculateCheckDigit(ean) {
+ var checksum = ean.slice(0, -1).split('').map(function (_char, index) {
+ return Number(_char) * getPositionWeightThroughLengthAndIndex(ean.length, index);
+ }).reduce(function (acc, partialSum) {
+ return acc + partialSum;
+ }, 0);
+ var remainder = 10 - checksum % 10;
+ return remainder < 10 ? remainder : 0;
+}
+/**
+ * Check if string is valid EAN:
+ * Matches EAN-8/EAN-13 regex
+ * Has valid check digit.
+ *
+ * @param {string} str
+ * @return {boolean}
+ */
- if (!DNI.test(sanitized)) {
- return false;
- }
- var c = 0;
- var invertedArray = sanitized.replace(/\s/g, '').split('').map(Number).reverse();
- invertedArray.forEach(function (val, i) {
- c = d[c][p[i % 8][val]];
- });
- return c === 0;
- },
- IT: function IT(str) {
- if (str.length !== 9) return false;
- if (str === 'CA00000AA') return false; // https://it.wikipedia.org/wiki/Carta_d%27identit%C3%A0_elettronica_italiana
+function isEAN(str) {
+ assertString(str);
+ var actualCheckDigit = Number(str.slice(-1));
+ return validEanRegex.test(str) && actualCheckDigit === calculateCheckDigit(str);
+}
- return str.search(/C[A-Z][0-9]{5}[A-Z]{2}/i) > -1;
- },
- NO: function NO(str) {
- var sanitized = str.trim();
- if (isNaN(Number(sanitized))) return false;
- if (sanitized.length !== 11) return false;
- if (sanitized === '00000000000') return false; // https://no.wikipedia.org/wiki/F%C3%B8dselsnummer
-
- var f = sanitized.split('').map(Number);
- var k1 = (11 - (3 * f[0] + 7 * f[1] + 6 * f[2] + 1 * f[3] + 8 * f[4] + 9 * f[5] + 4 * f[6] + 5 * f[7] + 2 * f[8]) % 11) % 11;
- var k2 = (11 - (5 * f[0] + 4 * f[1] + 3 * f[2] + 2 * f[3] + 7 * f[4] + 6 * f[5] + 5 * f[6] + 4 * f[7] + 3 * f[8] + 2 * k1) % 11) % 11;
- if (k1 !== f[9] || k2 !== f[10]) return false;
- return true;
- },
- 'he-IL': function heIL(str) {
- var DNI = /^\d{9}$/; // sanitize user input
+var isin = /^[A-Z]{2}[0-9A-Z]{9}[0-9]$/;
+function isISIN(str) {
+ assertString(str);
- var sanitized = str.trim(); // validate the data structure
+ if (!isin.test(str)) {
+ return false;
+ }
- if (!DNI.test(sanitized)) {
- return false;
- }
+ var checksumStr = str.replace(/[A-Z]/g, function (character) {
+ return parseInt(character, 36);
+ });
+ var sum = 0;
+ var digit;
+ var tmpNum;
+ var shouldDouble = true;
- var id = sanitized;
- var sum = 0,
- incNum;
+ for (var i = checksumStr.length - 2; i >= 0; i--) {
+ digit = checksumStr.substring(i, i + 1);
+ tmpNum = parseInt(digit, 10);
- for (var i = 0; i < id.length; i++) {
- incNum = Number(id[i]) * (i % 2 + 1); // Multiply number by 1 or 2
+ if (shouldDouble) {
+ tmpNum *= 2;
- sum += incNum > 9 ? incNum - 9 : incNum; // Sum the digits up and add to total
+ if (tmpNum >= 10) {
+ sum += tmpNum + 1;
+ } else {
+ sum += tmpNum;
}
+ } else {
+ sum += tmpNum;
+ }
- return sum % 10 === 0;
- },
- 'ar-TN': function arTN(str) {
- var DNI = /^\d{8}$/; // sanitize user input
+ shouldDouble = !shouldDouble;
+ }
- var sanitized = str.trim(); // validate the data structure
+ return parseInt(str.substr(str.length - 1), 10) === (10000 - sum) % 10;
+}
- if (!DNI.test(sanitized)) {
- return false;
- }
+var isbn10Maybe = /^(?:[0-9]{9}X|[0-9]{10})$/;
+var isbn13Maybe = /^(?:[0-9]{13})$/;
+var factor = [1, 3];
+function isISBN(str) {
+ var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+ assertString(str);
+ version = String(version);
- return true;
- },
- 'zh-CN': function zhCN(str) {
- var provincesAndCities = ['11', // 北京
- '12', // 天津
- '13', // 河北
- '14', // 山西
- '15', // 内蒙古
- '21', // 辽宁
- '22', // 吉林
- '23', // 黑龙江
- '31', // 上海
- '32', // 江苏
- '33', // 浙江
- '34', // 安徽
- '35', // 福建
- '36', // 江西
- '37', // 山东
- '41', // 河南
- '42', // 湖北
- '43', // 湖南
- '44', // 广东
- '45', // 广西
- '46', // 海南
- '50', // 重庆
- '51', // 四川
- '52', // 贵州
- '53', // 云南
- '54', // 西藏
- '61', // 陕西
- '62', // 甘肃
- '63', // 青海
- '64', // 宁夏
- '65', // 新疆
- '71', // 台湾
- '81', // 香港
- '82', // 澳门
- '91' // 国外
- ];
- var powers = ['7', '9', '10', '5', '8', '4', '2', '1', '6', '3', '7', '9', '10', '5', '8', '4', '2'];
- var parityBit = ['1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'];
-
- var checkAddressCode = function checkAddressCode(addressCode) {
- return provincesAndCities.includes(addressCode);
- };
+ if (!version) {
+ return isISBN(str, 10) || isISBN(str, 13);
+ }
- var checkBirthDayCode = function checkBirthDayCode(birDayCode) {
- var yyyy = parseInt(birDayCode.substring(0, 4), 10);
- var mm = parseInt(birDayCode.substring(4, 6), 10);
- var dd = parseInt(birDayCode.substring(6), 10);
- var xdata = new Date(yyyy, mm - 1, dd);
+ var sanitized = str.replace(/[\s-]+/g, '');
+ var checksum = 0;
+ var i;
- if (xdata > new Date()) {
- return false; // eslint-disable-next-line max-len
- } else if (xdata.getFullYear() === yyyy && xdata.getMonth() === mm - 1 && xdata.getDate() === dd) {
- return true;
- }
-
- return false;
- };
-
- var getParityBit = function getParityBit(idCardNo) {
- var id17 = idCardNo.substring(0, 17);
- var power = 0;
-
- for (var i = 0; i < 17; i++) {
- power += parseInt(id17.charAt(i), 10) * parseInt(powers[i], 10);
- }
-
- var mod = power % 11;
- return parityBit[mod];
- };
-
- var checkParityBit = function checkParityBit(idCardNo) {
- return getParityBit(idCardNo) === idCardNo.charAt(17).toUpperCase();
- };
-
- var check15IdCardNo = function check15IdCardNo(idCardNo) {
- var check = /^[1-9]\d{7}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}$/.test(idCardNo);
- if (!check) return false;
- var addressCode = idCardNo.substring(0, 2);
- check = checkAddressCode(addressCode);
- if (!check) return false;
- var birDayCode = "19".concat(idCardNo.substring(6, 12));
- check = checkBirthDayCode(birDayCode);
- if (!check) return false;
- return true;
- };
-
- var check18IdCardNo = function check18IdCardNo(idCardNo) {
- var check = /^[1-9]\d{5}[1-9]\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}(\d|x|X)$/.test(idCardNo);
- if (!check) return false;
- var addressCode = idCardNo.substring(0, 2);
- check = checkAddressCode(addressCode);
- if (!check) return false;
- var birDayCode = idCardNo.substring(6, 14);
- check = checkBirthDayCode(birDayCode);
- if (!check) return false;
- return checkParityBit(idCardNo);
- };
-
- var checkIdCardNo = function checkIdCardNo(idCardNo) {
- var check = /^\d{15}|(\d{17}(\d|x|X))$/.test(idCardNo);
- if (!check) return false;
-
- if (idCardNo.length === 15) {
- return check15IdCardNo(idCardNo);
- }
-
- return check18IdCardNo(idCardNo);
- };
-
- return checkIdCardNo(str);
- },
- 'zh-TW': function zhTW(str) {
- var ALPHABET_CODES = {
- A: 10,
- B: 11,
- C: 12,
- D: 13,
- E: 14,
- F: 15,
- G: 16,
- H: 17,
- I: 34,
- J: 18,
- K: 19,
- L: 20,
- M: 21,
- N: 22,
- O: 35,
- P: 23,
- Q: 24,
- R: 25,
- S: 26,
- T: 27,
- U: 28,
- V: 29,
- W: 32,
- X: 30,
- Y: 31,
- Z: 33
- };
- var sanitized = str.trim().toUpperCase();
- if (!/^[A-Z][0-9]{9}$/.test(sanitized)) return false;
- return Array.from(sanitized).reduce(function (sum, number, index) {
- if (index === 0) {
- var code = ALPHABET_CODES[number];
- return code % 10 * 9 + Math.floor(code / 10);
- }
-
- if (index === 9) {
- return (10 - sum % 10 - Number(number)) % 10 === 0;
- }
+ if (version === '10') {
+ if (!isbn10Maybe.test(sanitized)) {
+ return false;
+ }
- return sum + Number(number) * (9 - index);
- }, 0);
+ for (i = 0; i < 9; i++) {
+ checksum += (i + 1) * sanitized.charAt(i);
}
- };
- function isIdentityCard(str, locale) {
- assertString(str);
- if (locale in validators) {
- return validators[locale](str);
- } else if (locale === 'any') {
- for (var key in validators) {
- // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
- // istanbul ignore else
- if (validators.hasOwnProperty(key)) {
- var validator = validators[key];
-
- if (validator(str)) {
- return true;
- }
- }
- }
+ if (sanitized.charAt(9) === 'X') {
+ checksum += 10 * 10;
+ } else {
+ checksum += 10 * sanitized.charAt(9);
+ }
+ if (checksum % 11 === 0) {
+ return !!sanitized;
+ }
+ } else if (version === '13') {
+ if (!isbn13Maybe.test(sanitized)) {
return false;
}
- throw new Error("Invalid locale '".concat(locale, "'"));
- }
-
- /**
- * The most commonly used EAN standard is
- * the thirteen-digit EAN-13, while the
- * less commonly used 8-digit EAN-8 barcode was
- * introduced for use on small packages.
- * EAN consists of:
- * GS1 prefix, manufacturer code, product code and check digit
- * Reference: https://en.wikipedia.org/wiki/International_Article_Number
- */
- /**
- * Define EAN Lenghts; 8 for EAN-8; 13 for EAN-13
- * and Regular Expression for valid EANs (EAN-8, EAN-13),
- * with exact numberic matching of 8 or 13 digits [0-9]
- */
-
- var LENGTH_EAN_8 = 8;
- var validEanRegex = /^(\d{8}|\d{13})$/;
- /**
- * Get position weight given:
- * EAN length and digit index/position
- *
- * @param {number} length
- * @param {number} index
- * @return {number}
- */
-
- function getPositionWeightThroughLengthAndIndex(length, index) {
- if (length === LENGTH_EAN_8) {
- return index % 2 === 0 ? 3 : 1;
+ for (i = 0; i < 12; i++) {
+ checksum += factor[i % 2] * sanitized.charAt(i);
}
- return index % 2 === 0 ? 1 : 3;
+ if (sanitized.charAt(12) - (10 - checksum % 10) % 10 === 0) {
+ return !!sanitized;
+ }
}
- /**
- * Calculate EAN Check Digit
- * Reference: https://en.wikipedia.org/wiki/International_Article_Number#Calculation_of_checksum_digit
- *
- * @param {string} ean
- * @return {number}
- */
+ return false;
+}
- function calculateCheckDigit(ean) {
- var checksum = ean.slice(0, -1).split('').map(function (_char, index) {
- return Number(_char) * getPositionWeightThroughLengthAndIndex(ean.length, index);
- }).reduce(function (acc, partialSum) {
- return acc + partialSum;
- }, 0);
- var remainder = 10 - checksum % 10;
- return remainder < 10 ? remainder : 0;
- }
- /**
- * Check if string is valid EAN:
- * Matches EAN-8/EAN-13 regex
- * Has valid check digit.
- *
- * @param {string} str
- * @return {boolean}
- */
-
+var issn = '^\\d{4}-?\\d{3}[\\dX]$';
+function isISSN(str) {
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
+ assertString(str);
+ var testIssn = issn;
+ testIssn = options.require_hyphen ? testIssn.replace('?', '') : testIssn;
+ testIssn = options.case_sensitive ? new RegExp(testIssn) : new RegExp(testIssn, 'i');
- function isEAN(str) {
- assertString(str);
- var actualCheckDigit = Number(str.slice(-1));
- return validEanRegex.test(str) && actualCheckDigit === calculateCheckDigit(str);
+ if (!testIssn.test(str)) {
+ return false;
}
- var isin = /^[A-Z]{2}[0-9A-Z]{9}[0-9]$/;
- function isISIN(str) {
- assertString(str);
-
- if (!isin.test(str)) {
- return false;
- }
-
- var checksumStr = str.replace(/[A-Z]/g, function (character) {
- return parseInt(character, 36);
- });
- var sum = 0;
- var digit;
- var tmpNum;
- var shouldDouble = true;
-
- for (var i = checksumStr.length - 2; i >= 0; i--) {
- digit = checksumStr.substring(i, i + 1);
- tmpNum = parseInt(digit, 10);
-
- if (shouldDouble) {
- tmpNum *= 2;
-
- if (tmpNum >= 10) {
- sum += tmpNum + 1;
- } else {
- sum += tmpNum;
- }
- } else {
- sum += tmpNum;
- }
-
- shouldDouble = !shouldDouble;
- }
+ var digits = str.replace('-', '').toUpperCase();
+ var checksum = 0;
- return parseInt(str.substr(str.length - 1), 10) === (10000 - sum) % 10;
+ for (var i = 0; i < digits.length; i++) {
+ var digit = digits[i];
+ checksum += (digit === 'X' ? 10 : +digit) * (8 - i);
}
- var isbn10Maybe = /^(?:[0-9]{9}X|[0-9]{10})$/;
- var isbn13Maybe = /^(?:[0-9]{13})$/;
- var factor = [1, 3];
- function isISBN(str) {
- var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- assertString(str);
- version = String(version);
-
- if (!version) {
- return isISBN(str, 10) || isISBN(str, 13);
- }
+ return checksum % 11 === 0;
+}
- var sanitized = str.replace(/[\s-]+/g, '');
- var checksum = 0;
- var i;
-
- if (version === '10') {
- if (!isbn10Maybe.test(sanitized)) {
- return false;
- }
-
- for (i = 0; i < 9; i++) {
- checksum += (i + 1) * sanitized.charAt(i);
- }
+/**
+ * en-US TIN Validation
+ *
+ * An Employer Identification Number (EIN), also known as a Federal Tax Identification Number,
+ * is used to identify a business entity.
+ *
+ * NOTES:
+ * - Prefix 47 is being reserved for future use
+ * - Prefixes 26, 27, 45, 46 and 47 were previously assigned by the Philadelphia campus.
+ *
+ * See `http://www.irs.gov/Businesses/Small-Businesses-&-Self-Employed/How-EINs-are-Assigned-and-Valid-EIN-Prefixes`
+ * for more information.
+ */
+// Valid US IRS campus prefixes
+
+var enUsCampusPrefix = {
+ andover: ['10', '12'],
+ atlanta: ['60', '67'],
+ austin: ['50', '53'],
+ brookhaven: ['01', '02', '03', '04', '05', '06', '11', '13', '14', '16', '21', '22', '23', '25', '34', '51', '52', '54', '55', '56', '57', '58', '59', '65'],
+ cincinnati: ['30', '32', '35', '36', '37', '38', '61'],
+ fresno: ['15', '24'],
+ internet: ['20', '26', '27', '45', '46', '47'],
+ kansas: ['40', '44'],
+ memphis: ['94', '95'],
+ ogden: ['80', '90'],
+ philadelphia: ['33', '39', '41', '42', '43', '46', '48', '62', '63', '64', '66', '68', '71', '72', '73', '74', '75', '76', '77', '81', '82', '83', '84', '85', '86', '87', '88', '91', '92', '93', '98', '99'],
+ sba: ['31']
+}; // Return an array of all US IRS campus prefixes
+
+function enUsGetPrefixes() {
+ var prefixes = [];
+
+ for (var location in enUsCampusPrefix) {
+ // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
+ // istanbul ignore else
+ if (enUsCampusPrefix.hasOwnProperty(location)) {
+ prefixes.push.apply(prefixes, _toConsumableArray(enUsCampusPrefix[location]));
+ }
+ }
+
+ return prefixes;
+}
+/*
+ * en-US validation function
+ * Verify that the TIN starts with a valid IRS campus prefix
+ */
- if (sanitized.charAt(9) === 'X') {
- checksum += 10 * 10;
- } else {
- checksum += 10 * sanitized.charAt(9);
- }
- if (checksum % 11 === 0) {
- return !!sanitized;
- }
- } else if (version === '13') {
- if (!isbn13Maybe.test(sanitized)) {
- return false;
- }
+function enUsCheck(tin) {
+ return enUsGetPrefixes().indexOf(tin.substr(0, 2)) !== -1;
+} // tax id regex formats for various locales
- for (i = 0; i < 12; i++) {
- checksum += factor[i % 2] * sanitized.charAt(i);
- }
- if (sanitized.charAt(12) - (10 - checksum % 10) % 10 === 0) {
- return !!sanitized;
- }
- }
+var taxIdFormat = {
+ 'en-US': /^\d{2}[- ]{0,1}\d{7}$/
+}; // Algorithmic tax id check functions for various locales
- return false;
- }
+var taxIdCheck = {
+ 'en-US': enUsCheck
+};
+/*
+ * Validator function
+ * Return true if the passed string is a valid tax identification number
+ * for the specified locale.
+ * Throw an error exception if the locale is not supported.
+ */
- var issn = '^\\d{4}-?\\d{3}[\\dX]$';
- function isISSN(str) {
- var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
- assertString(str);
- var testIssn = issn;
- testIssn = options.require_hyphen ? testIssn.replace('?', '') : testIssn;
- testIssn = options.case_sensitive ? new RegExp(testIssn) : new RegExp(testIssn, 'i');
+function isTaxID(str) {
+ var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
+ assertString(str);
- if (!testIssn.test(str)) {
+ if (locale in taxIdFormat) {
+ if (!taxIdFormat[locale].test(str)) {
return false;
}
- var digits = str.replace('-', '').toUpperCase();
- var checksum = 0;
+ if (locale in taxIdCheck) {
+ return taxIdCheck[locale](str);
+ } // Fallthrough; not all locales have algorithmic checks
- for (var i = 0; i < digits.length; i++) {
- var digit = digits[i];
- checksum += (digit === 'X' ? 10 : +digit) * (8 - i);
- }
- return checksum % 11 === 0;
+ return true;
}
- /**
- * en-US TIN Validation
- *
- * An Employer Identification Number (EIN), also known as a Federal Tax Identification Number,
- * is used to identify a business entity.
- *
- * NOTES:
- * - Prefix 47 is being reserved for future use
- * - Prefixes 26, 27, 45, 46 and 47 were previously assigned by the Philadelphia campus.
- *
- * See `http://www.irs.gov/Businesses/Small-Businesses-&-Self-Employed/How-EINs-are-Assigned-and-Valid-EIN-Prefixes`
- * for more information.
- */
- // Valid US IRS campus prefixes
-
- var enUsCampusPrefix = {
- andover: ['10', '12'],
- atlanta: ['60', '67'],
- austin: ['50', '53'],
- brookhaven: ['01', '02', '03', '04', '05', '06', '11', '13', '14', '16', '21', '22', '23', '25', '34', '51', '52', '54', '55', '56', '57', '58', '59', '65'],
- cincinnati: ['30', '32', '35', '36', '37', '38', '61'],
- fresno: ['15', '24'],
- internet: ['20', '26', '27', '45', '46', '47'],
- kansas: ['40', '44'],
- memphis: ['94', '95'],
- ogden: ['80', '90'],
- philadelphia: ['33', '39', '41', '42', '43', '46', '48', '62', '63', '64', '66', '68', '71', '72', '73', '74', '75', '76', '77', '81', '82', '83', '84', '85', '86', '87', '88', '91', '92', '93', '98', '99'],
- sba: ['31']
- }; // Return an array of all US IRS campus prefixes
-
- function enUsGetPrefixes() {
- var prefixes = [];
-
- for (var location in enUsCampusPrefix) {
- // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
- // istanbul ignore else
- if (enUsCampusPrefix.hasOwnProperty(location)) {
- prefixes.push.apply(prefixes, _toConsumableArray(enUsCampusPrefix[location]));
- }
- }
-
- return prefixes;
+ throw new Error("Invalid locale '".concat(locale, "'"));
+}
+
+/* eslint-disable max-len */
+
+var phones = {
+ 'am-AM': /^(\+?374|0)((10|[9|7][0-9])\d{6}$|[2-4]\d{7}$)/,
+ 'ar-AE': /^((\+?971)|0)?5[024568]\d{7}$/,
+ 'ar-BH': /^(\+?973)?(3|6)\d{7}$/,
+ 'ar-DZ': /^(\+?213|0)(5|6|7)\d{8}$/,
+ 'ar-LB': /^(\+?961)?((3|81)\d{6}|7\d{7})$/,
+ 'ar-EG': /^((\+?20)|0)?1[0125]\d{8}$/,
+ 'ar-IQ': /^(\+?964|0)?7[0-9]\d{8}$/,
+ 'ar-JO': /^(\+?962|0)?7[789]\d{7}$/,
+ 'ar-KW': /^(\+?965)[569]\d{7}$/,
+ 'ar-LY': /^((\+?218)|0)?(9[1-6]\d{7}|[1-8]\d{7,9})$/,
+ 'ar-SA': /^(!?(\+?966)|0)?5\d{8}$/,
+ 'ar-SY': /^(!?(\+?963)|0)?9\d{8}$/,
+ 'ar-TN': /^(\+?216)?[2459]\d{7}$/,
+ 'az-AZ': /^(\+994|0)(5[015]|7[07]|99)\d{7}$/,
+ 'bs-BA': /^((((\+|00)3876)|06))((([0-3]|[5-6])\d{6})|(4\d{7}))$/,
+ 'be-BY': /^(\+?375)?(24|25|29|33|44)\d{7}$/,
+ 'bg-BG': /^(\+?359|0)?8[789]\d{7}$/,
+ 'bn-BD': /^(\+?880|0)1[13456789][0-9]{8}$/,
+ 'cs-CZ': /^(\+?420)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/,
+ 'da-DK': /^(\+?45)?\s?\d{2}\s?\d{2}\s?\d{2}\s?\d{2}$/,
+ 'de-DE': /^(\+49)?0?[1|3]([0|5][0-45-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/,
+ 'de-AT': /^(\+43|0)\d{1,4}\d{3,12}$/,
+ 'de-CH': /^(\+41|0)(7[5-9])\d{1,7}$/,
+ 'el-GR': /^(\+?30|0)?(69\d{8})$/,
+ 'en-AU': /^(\+?61|0)4\d{8}$/,
+ 'en-GB': /^(\+?44|0)7\d{9}$/,
+ 'en-GG': /^(\+?44|0)1481\d{6}$/,
+ 'en-GH': /^(\+233|0)(20|50|24|54|27|57|26|56|23|28)\d{7}$/,
+ 'en-HK': /^(\+?852[-\s]?)?[456789]\d{3}[-\s]?\d{4}$/,
+ 'en-MO': /^(\+?853[-\s]?)?[6]\d{3}[-\s]?\d{4}$/,
+ 'en-IE': /^(\+?353|0)8[356789]\d{7}$/,
+ 'en-IN': /^(\+?91|0)?[6789]\d{9}$/,
+ 'en-KE': /^(\+?254|0)(7|1)\d{8}$/,
+ 'en-MT': /^(\+?356|0)?(99|79|77|21|27|22|25)[0-9]{6}$/,
+ 'en-MU': /^(\+?230|0)?\d{8}$/,
+ 'en-NG': /^(\+?234|0)?[789]\d{9}$/,
+ 'en-NZ': /^(\+?64|0)[28]\d{7,9}$/,
+ 'en-PK': /^((\+92)|(0092))-{0,1}\d{3}-{0,1}\d{7}$|^\d{11}$|^\d{4}-\d{7}$/,
+ 'en-PH': /^(09|\+639)\d{9}$/,
+ 'en-RW': /^(\+?250|0)?[7]\d{8}$/,
+ 'en-SG': /^(\+65)?[689]\d{7}$/,
+ 'en-SL': /^(?:0|94|\+94)?(7(0|1|2|5|6|7|8)( |-)?\d)\d{6}$/,
+ 'en-TZ': /^(\+?255|0)?[67]\d{8}$/,
+ 'en-UG': /^(\+?256|0)?[7]\d{8}$/,
+ 'en-US': /^((\+1|1)?( |-)?)?(\([2-9][0-9]{2}\)|[2-9][0-9]{2})( |-)?([2-9][0-9]{2}( |-)?[0-9]{4})$/,
+ 'en-ZA': /^(\+?27|0)\d{9}$/,
+ 'en-ZM': /^(\+?26)?09[567]\d{7}$/,
+ 'en-ZW': /^(\+263)[0-9]{9}$/,
+ 'es-AR': /^\+?549(11|[2368]\d)\d{8}$/,
+ 'es-BO': /^(\+?591)?(6|7)\d{7}$/,
+ 'es-CO': /^(\+?57)?([1-8]{1}|3[0-9]{2})?[2-9]{1}\d{6}$/,
+ 'es-CL': /^(\+?56|0)[2-9]\d{1}\d{7}$/,
+ 'es-CR': /^(\+506)?[2-8]\d{7}$/,
+ 'es-DO': /^(\+?1)?8[024]9\d{7}$/,
+ 'es-EC': /^(\+?593|0)([2-7]|9[2-9])\d{7}$/,
+ 'es-ES': /^(\+?34)?[6|7]\d{8}$/,
+ 'es-PE': /^(\+?51)?9\d{8}$/,
+ 'es-MX': /^(\+?52)?(1|01)?\d{10,11}$/,
+ 'es-PA': /^(\+?507)\d{7,8}$/,
+ 'es-PY': /^(\+?595|0)9[9876]\d{7}$/,
+ 'es-UY': /^(\+598|0)9[1-9][\d]{6}$/,
+ 'et-EE': /^(\+?372)?\s?(5|8[1-4])\s?([0-9]\s?){6,7}$/,
+ 'fa-IR': /^(\+?98[\-\s]?|0)9[0-39]\d[\-\s]?\d{3}[\-\s]?\d{4}$/,
+ 'fi-FI': /^(\+?358|0)\s?(4(0|1|2|4|5|6)?|50)\s?(\d\s?){4,8}\d$/,
+ 'fj-FJ': /^(\+?679)?\s?\d{3}\s?\d{4}$/,
+ 'fo-FO': /^(\+?298)?\s?\d{2}\s?\d{2}\s?\d{2}$/,
+ 'fr-FR': /^(\+?33|0)[67]\d{8}$/,
+ 'fr-GF': /^(\+?594|0|00594)[67]\d{8}$/,
+ 'fr-GP': /^(\+?590|0|00590)[67]\d{8}$/,
+ 'fr-MQ': /^(\+?596|0|00596)[67]\d{8}$/,
+ 'fr-RE': /^(\+?262|0|00262)[67]\d{8}$/,
+ 'he-IL': /^(\+972|0)([23489]|5[012345689]|77)[1-9]\d{6}$/,
+ 'hu-HU': /^(\+?36)(20|30|70)\d{7}$/,
+ 'id-ID': /^(\+?62|0)8(1[123456789]|2[1238]|3[1238]|5[12356789]|7[78]|9[56789]|8[123456789])([\s?|\d]{5,11})$/,
+ 'it-IT': /^(\+?39)?\s?3\d{2} ?\d{6,7}$/,
+ 'ja-JP': /^(\+81[ \-]?(\(0\))?|0)[6789]0[ \-]?\d{4}[ \-]?\d{4}$/,
+ 'ka-GE': /^(\+?995)?(5|79)\d{7}$/,
+ 'kk-KZ': /^(\+?7|8)?7\d{9}$/,
+ 'kl-GL': /^(\+?299)?\s?\d{2}\s?\d{2}\s?\d{2}$/,
+ 'ko-KR': /^((\+?82)[ \-]?)?0?1([0|1|6|7|8|9]{1})[ \-]?\d{3,4}[ \-]?\d{4}$/,
+ 'lt-LT': /^(\+370|8)\d{8}$/,
+ 'ms-MY': /^(\+?6?01){1}(([0145]{1}(\-|\s)?\d{7,8})|([236789]{1}(\s|\-)?\d{7}))$/,
+ 'nb-NO': /^(\+?47)?[49]\d{7}$/,
+ 'ne-NP': /^(\+?977)?9[78]\d{8}$/,
+ 'nl-BE': /^(\+?32|0)4?\d{8}$/,
+ 'nl-NL': /^(((\+|00)?31\(0\))|((\+|00)?31)|0)6{1}\d{8}$/,
+ 'nn-NO': /^(\+?47)?[49]\d{7}$/,
+ 'pl-PL': /^(\+?48)? ?[5-8]\d ?\d{3} ?\d{2} ?\d{2}$/,
+ 'pt-BR': /(?=^(\+?5{2}\-?|0)[1-9]{2}\-?\d{4}\-?\d{4}$)(^(\+?5{2}\-?|0)[1-9]{2}\-?[6-9]{1}\d{3}\-?\d{4}$)|(^(\+?5{2}\-?|0)[1-9]{2}\-?9[6-9]{1}\d{3}\-?\d{4}$)/,
+ 'pt-PT': /^(\+?351)?9[1236]\d{7}$/,
+ 'ro-RO': /^(\+?4?0)\s?7\d{2}(\/|\s|\.|\-)?\d{3}(\s|\.|\-)?\d{3}$/,
+ 'ru-RU': /^(\+?7|8)?9\d{9}$/,
+ 'sl-SI': /^(\+386\s?|0)(\d{1}\s?\d{3}\s?\d{2}\s?\d{2}|\d{2}\s?\d{3}\s?\d{3})$/,
+ 'sk-SK': /^(\+?421)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/,
+ 'sr-RS': /^(\+3816|06)[- \d]{5,9}$/,
+ 'sv-SE': /^(\+?46|0)[\s\-]?7[\s\-]?[02369]([\s\-]?\d){7}$/,
+ 'th-TH': /^(\+66|66|0)\d{9}$/,
+ 'tr-TR': /^(\+?90|0)?5\d{9}$/,
+ 'uk-UA': /^(\+?38|8)?0\d{9}$/,
+ 'uz-UZ': /^(\+?998)?(6[125-79]|7[1-69]|88|9\d)\d{7}$/,
+ 'vi-VN': /^(\+?84|0)((3([2-9]))|(5([2689]))|(7([0|6-9]))|(8([1-6|89]))|(9([0-9])))([0-9]{7})$/,
+ 'zh-CN': /^((\+|00)86)?1([3568][0-9]|4[579]|6[67]|7[01235678]|9[012356789])[0-9]{8}$/,
+ 'zh-TW': /^(\+?886\-?|0)?9\d{8}$/
+};
+/* eslint-enable max-len */
+// aliases
+
+phones['en-CA'] = phones['en-US'];
+phones['fr-BE'] = phones['nl-BE'];
+phones['zh-HK'] = phones['en-HK'];
+phones['zh-MO'] = phones['en-MO'];
+function isMobilePhone(str, locale, options) {
+ assertString(str);
+
+ if (options && options.strictMode && !str.startsWith('+')) {
+ return false;
}
- /*
- * en-US validation function
- * Verify that the TIN starts with a valid IRS campus prefix
- */
-
-
- function enUsCheck(tin) {
- return enUsGetPrefixes().indexOf(tin.substr(0, 2)) !== -1;
- } // tax id regex formats for various locales
-
-
- var taxIdFormat = {
- 'en-US': /^\d{2}[- ]{0,1}\d{7}$/
- }; // Algorithmic tax id check functions for various locales
- var taxIdCheck = {
- 'en-US': enUsCheck
- };
- /*
- * Validator function
- * Return true if the passed string is a valid tax identification number
- * for the specified locale.
- * Throw an error exception if the locale is not supported.
- */
-
- function isTaxID(str) {
- var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
- assertString(str);
+ if (Array.isArray(locale)) {
+ return locale.some(function (key) {
+ // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
+ // istanbul ignore else
+ if (phones.hasOwnProperty(key)) {
+ var phone = phones[key];
- if (locale in taxIdFormat) {
- if (!taxIdFormat[locale].test(str)) {
- return false;
+ if (phone.test(str)) {
+ return true;
+ }
}
- if (locale in taxIdCheck) {
- return taxIdCheck[locale](str);
- } // Fallthrough; not all locales have algorithmic checks
-
-
- return true;
- }
-
- throw new Error("Invalid locale '".concat(locale, "'"));
- }
-
- /* eslint-disable max-len */
-
- var phones = {
- 'am-AM': /^(\+?374|0)((10|[9|7][0-9])\d{6}$|[2-4]\d{7}$)/,
- 'ar-AE': /^((\+?971)|0)?5[024568]\d{7}$/,
- 'ar-BH': /^(\+?973)?(3|6)\d{7}$/,
- 'ar-DZ': /^(\+?213|0)(5|6|7)\d{8}$/,
- 'ar-EG': /^((\+?20)|0)?1[0125]\d{8}$/,
- 'ar-IQ': /^(\+?964|0)?7[0-9]\d{8}$/,
- 'ar-JO': /^(\+?962|0)?7[789]\d{7}$/,
- 'ar-KW': /^(\+?965)[569]\d{7}$/,
- 'ar-LY': /^((\+?218)|0)?(9[1-6]\d{7}|[1-8]\d{7,9})$/,
- 'ar-SA': /^(!?(\+?966)|0)?5\d{8}$/,
- 'ar-SY': /^(!?(\+?963)|0)?9\d{8}$/,
- 'ar-TN': /^(\+?216)?[2459]\d{7}$/,
- 'az-AZ': /^(\+994|0)(5[015]|7[07]|99)\d{7}$/,
- 'bs-BA': /^((((\+|00)3876)|06))((([0-3]|[5-6])\d{6})|(4\d{7}))$/,
- 'be-BY': /^(\+?375)?(24|25|29|33|44)\d{7}$/,
- 'bg-BG': /^(\+?359|0)?8[789]\d{7}$/,
- 'bn-BD': /^(\+?880|0)1[13456789][0-9]{8}$/,
- 'cs-CZ': /^(\+?420)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/,
- 'da-DK': /^(\+?45)?\s?\d{2}\s?\d{2}\s?\d{2}\s?\d{2}$/,
- 'de-DE': /^(\+49)?0?[1|3]([0|5][0-45-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/,
- 'de-AT': /^(\+43|0)\d{1,4}\d{3,12}$/,
- 'de-CH': /^(\+41|0)(7[5-9])\d{1,7}$/,
- 'el-GR': /^(\+?30|0)?(69\d{8})$/,
- 'en-AU': /^(\+?61|0)4\d{8}$/,
- 'en-GB': /^(\+?44|0)7\d{9}$/,
- 'en-GG': /^(\+?44|0)1481\d{6}$/,
- 'en-GH': /^(\+233|0)(20|50|24|54|27|57|26|56|23|28)\d{7}$/,
- 'en-HK': /^(\+?852[-\s]?)?[456789]\d{3}[-\s]?\d{4}$/,
- 'en-MO': /^(\+?853[-\s]?)?[6]\d{3}[-\s]?\d{4}$/,
- 'en-IE': /^(\+?353|0)8[356789]\d{7}$/,
- 'en-IN': /^(\+?91|0)?[6789]\d{9}$/,
- 'en-KE': /^(\+?254|0)(7|1)\d{8}$/,
- 'en-MT': /^(\+?356|0)?(99|79|77|21|27|22|25)[0-9]{6}$/,
- 'en-MU': /^(\+?230|0)?\d{8}$/,
- 'en-NG': /^(\+?234|0)?[789]\d{9}$/,
- 'en-NZ': /^(\+?64|0)[28]\d{7,9}$/,
- 'en-PK': /^((\+92)|(0092))-{0,1}\d{3}-{0,1}\d{7}$|^\d{11}$|^\d{4}-\d{7}$/,
- 'en-PH': /^(09|\+639)\d{9}$/,
- 'en-RW': /^(\+?250|0)?[7]\d{8}$/,
- 'en-SG': /^(\+65)?[689]\d{7}$/,
- 'en-SL': /^(?:0|94|\+94)?(7(0|1|2|5|6|7|8)( |-)?\d)\d{6}$/,
- 'en-TZ': /^(\+?255|0)?[67]\d{8}$/,
- 'en-UG': /^(\+?256|0)?[7]\d{8}$/,
- 'en-US': /^((\+1|1)?( |-)?)?(\([2-9][0-9]{2}\)|[2-9][0-9]{2})( |-)?([2-9][0-9]{2}( |-)?[0-9]{4})$/,
- 'en-ZA': /^(\+?27|0)\d{9}$/,
- 'en-ZM': /^(\+?26)?09[567]\d{7}$/,
- 'en-ZW': /^(\+263)[0-9]{9}$/,
- 'es-AR': /^\+?549(11|[2368]\d)\d{8}$/,
- 'es-CO': /^(\+?57)?([1-8]{1}|3[0-9]{2})?[2-9]{1}\d{6}$/,
- 'es-CL': /^(\+?56|0)[2-9]\d{1}\d{7}$/,
- 'es-CR': /^(\+506)?[2-8]\d{7}$/,
- 'es-EC': /^(\+?593|0)([2-7]|9[2-9])\d{7}$/,
- 'es-ES': /^(\+?34)?[6|7]\d{8}$/,
- 'es-MX': /^(\+?52)?(1|01)?\d{10,11}$/,
- 'es-PA': /^(\+?507)\d{7,8}$/,
- 'es-PY': /^(\+?595|0)9[9876]\d{7}$/,
- 'es-UY': /^(\+598|0)9[1-9][\d]{6}$/,
- 'et-EE': /^(\+?372)?\s?(5|8[1-4])\s?([0-9]\s?){6,7}$/,
- 'fa-IR': /^(\+?98[\-\s]?|0)9[0-39]\d[\-\s]?\d{3}[\-\s]?\d{4}$/,
- 'fi-FI': /^(\+?358|0)\s?(4(0|1|2|4|5|6)?|50)\s?(\d\s?){4,8}\d$/,
- 'fj-FJ': /^(\+?679)?\s?\d{3}\s?\d{4}$/,
- 'fo-FO': /^(\+?298)?\s?\d{2}\s?\d{2}\s?\d{2}$/,
- 'fr-FR': /^(\+?33|0)[67]\d{8}$/,
- 'fr-GF': /^(\+?594|0|00594)[67]\d{8}$/,
- 'fr-GP': /^(\+?590|0|00590)[67]\d{8}$/,
- 'fr-MQ': /^(\+?596|0|00596)[67]\d{8}$/,
- 'fr-RE': /^(\+?262|0|00262)[67]\d{8}$/,
- 'he-IL': /^(\+972|0)([23489]|5[012345689]|77)[1-9]\d{6}$/,
- 'hu-HU': /^(\+?36)(20|30|70)\d{7}$/,
- 'id-ID': /^(\+?62|0)8(1[123456789]|2[1238]|3[1238]|5[12356789]|7[78]|9[56789]|8[123456789])([\s?|\d]{5,11})$/,
- 'it-IT': /^(\+?39)?\s?3\d{2} ?\d{6,7}$/,
- 'ja-JP': /^(\+81[ \-]?(\(0\))?|0)[6789]0[ \-]?\d{4}[ \-]?\d{4}$/,
- 'kk-KZ': /^(\+?7|8)?7\d{9}$/,
- 'kl-GL': /^(\+?299)?\s?\d{2}\s?\d{2}\s?\d{2}$/,
- 'ko-KR': /^((\+?82)[ \-]?)?0?1([0|1|6|7|8|9]{1})[ \-]?\d{3,4}[ \-]?\d{4}$/,
- 'lt-LT': /^(\+370|8)\d{8}$/,
- 'ms-MY': /^(\+?6?01){1}(([0145]{1}(\-|\s)?\d{7,8})|([236789]{1}(\s|\-)?\d{7}))$/,
- 'nb-NO': /^(\+?47)?[49]\d{7}$/,
- 'ne-NP': /^(\+?977)?9[78]\d{8}$/,
- 'nl-BE': /^(\+?32|0)4?\d{8}$/,
- 'nl-NL': /^(((\+|00)?31\(0\))|((\+|00)?31)|0)6{1}\d{8}$/,
- 'nn-NO': /^(\+?47)?[49]\d{7}$/,
- 'pl-PL': /^(\+?48)? ?[5-8]\d ?\d{3} ?\d{2} ?\d{2}$/,
- 'pt-BR': /(?=^(\+?5{2}\-?|0)[1-9]{2}\-?\d{4}\-?\d{4}$)(^(\+?5{2}\-?|0)[1-9]{2}\-?[6-9]{1}\d{3}\-?\d{4}$)|(^(\+?5{2}\-?|0)[1-9]{2}\-?9[6-9]{1}\d{3}\-?\d{4}$)/,
- 'pt-PT': /^(\+?351)?9[1236]\d{7}$/,
- 'ro-RO': /^(\+?4?0)\s?7\d{2}(\/|\s|\.|\-)?\d{3}(\s|\.|\-)?\d{3}$/,
- 'ru-RU': /^(\+?7|8)?9\d{9}$/,
- 'sl-SI': /^(\+386\s?|0)(\d{1}\s?\d{3}\s?\d{2}\s?\d{2}|\d{2}\s?\d{3}\s?\d{3})$/,
- 'sk-SK': /^(\+?421)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/,
- 'sr-RS': /^(\+3816|06)[- \d]{5,9}$/,
- 'sv-SE': /^(\+?46|0)[\s\-]?7[\s\-]?[02369]([\s\-]?\d){7}$/,
- 'th-TH': /^(\+66|66|0)\d{9}$/,
- 'tr-TR': /^(\+?90|0)?5\d{9}$/,
- 'uk-UA': /^(\+?38|8)?0\d{9}$/,
- 'uz-UZ': /^(\+?998)?(6[125-79]|7[1-69]|88|9\d)\d{7}$/,
- 'vi-VN': /^(\+?84|0)((3([2-9]))|(5([2689]))|(7([0|6-9]))|(8([1-6|89]))|(9([0-9])))([0-9]{7})$/,
- 'zh-CN': /^((\+|00)86)?1([3568][0-9]|4[579]|6[67]|7[01235678]|9[012356789])[0-9]{8}$/,
- 'zh-TW': /^(\+?886\-?|0)?9\d{8}$/
- };
- /* eslint-enable max-len */
- // aliases
-
- phones['en-CA'] = phones['en-US'];
- phones['fr-BE'] = phones['nl-BE'];
- phones['zh-HK'] = phones['en-HK'];
- phones['zh-MO'] = phones['en-MO'];
- function isMobilePhone(str, locale, options) {
- assertString(str);
-
- if (options && options.strictMode && !str.startsWith('+')) {
return false;
- }
-
- if (Array.isArray(locale)) {
- return locale.some(function (key) {
- // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
- // istanbul ignore else
- if (phones.hasOwnProperty(key)) {
- var phone = phones[key];
-
- if (phone.test(str)) {
- return true;
- }
- }
+ });
+ } else if (locale in phones) {
+ return phones[locale].test(str); // alias falsey locale as 'any'
+ } else if (!locale || locale === 'any') {
+ for (var key in phones) {
+ // istanbul ignore else
+ if (phones.hasOwnProperty(key)) {
+ var phone = phones[key];
- return false;
- });
- } else if (locale in phones) {
- return phones[locale].test(str); // alias falsey locale as 'any'
- } else if (!locale || locale === 'any') {
- for (var key in phones) {
- // istanbul ignore else
- if (phones.hasOwnProperty(key)) {
- var phone = phones[key];
-
- if (phone.test(str)) {
- return true;
- }
+ if (phone.test(str)) {
+ return true;
}
}
-
- return false;
}
- throw new Error("Invalid locale '".concat(locale, "'"));
- }
- var locales$3 = Object.keys(phones);
-
- var eth = /^(0x)[0-9a-f]{40}$/i;
- function isEthereumAddress(str) {
- assertString(str);
- return eth.test(str);
+ return false;
}
- function currencyRegex(options) {
- var decimal_digits = "\\d{".concat(options.digits_after_decimal[0], "}");
- options.digits_after_decimal.forEach(function (digit, index) {
- if (index !== 0) decimal_digits = "".concat(decimal_digits, "|\\d{").concat(digit, "}");
- });
- var symbol = "(".concat(options.symbol.replace(/\W/, function (m) {
- return "\\".concat(m);
- }), ")").concat(options.require_symbol ? '' : '?'),
+ throw new Error("Invalid locale '".concat(locale, "'"));
+}
+var locales$3 = Object.keys(phones);
+
+var eth = /^(0x)[0-9a-f]{40}$/i;
+function isEthereumAddress(str) {
+ assertString(str);
+ return eth.test(str);
+}
+
+function currencyRegex(options) {
+ var decimal_digits = "\\d{".concat(options.digits_after_decimal[0], "}");
+ options.digits_after_decimal.forEach(function (digit, index) {
+ if (index !== 0) decimal_digits = "".concat(decimal_digits, "|\\d{").concat(digit, "}");
+ });
+ var symbol = "(".concat(options.symbol.replace(/\W/, function (m) {
+ return "\\".concat(m);
+ }), ")").concat(options.require_symbol ? '' : '?'),
negative = '-?',
whole_dollar_amount_without_sep = '[1-9]\\d*',
whole_dollar_amount_with_sep = "[1-9]\\d{0,2}(\\".concat(options.thousands_separator, "\\d{3})*"),
valid_whole_dollar_amounts = ['0', whole_dollar_amount_without_sep, whole_dollar_amount_with_sep],
whole_dollar_amount = "(".concat(valid_whole_dollar_amounts.join('|'), ")?"),
decimal_amount = "(\\".concat(options.decimal_separator, "(").concat(decimal_digits, "))").concat(options.require_decimal ? '' : '?');
- var pattern = whole_dollar_amount + (options.allow_decimal || options.require_decimal ? decimal_amount : ''); // default is negative sign before symbol, but there are two other options (besides parens)
-
- if (options.allow_negatives && !options.parens_for_negatives) {
- if (options.negative_sign_after_digits) {
- pattern += negative;
- } else if (options.negative_sign_before_digits) {
- pattern = negative + pattern;
- }
- } // South African Rand, for example, uses R 123 (space) and R-123 (no space)
-
-
- if (options.allow_negative_sign_placeholder) {
- pattern = "( (?!\\-))?".concat(pattern);
- } else if (options.allow_space_after_symbol) {
- pattern = " ?".concat(pattern);
- } else if (options.allow_space_after_digits) {
- pattern += '( (?!$))?';
- }
-
- if (options.symbol_after_digits) {
- pattern += symbol;
- } else {
- pattern = symbol + pattern;
- }
-
- if (options.allow_negatives) {
- if (options.parens_for_negatives) {
- pattern = "(\\(".concat(pattern, "\\)|").concat(pattern, ")");
- } else if (!(options.negative_sign_before_digits || options.negative_sign_after_digits)) {
- pattern = negative + pattern;
- }
- } // ensure there's a dollar and/or decimal amount, and that
- // it doesn't start with a space or a negative sign followed by a space
-
-
- return new RegExp("^(?!-? )(?=.*\\d)".concat(pattern, "$"));
- }
-
- var default_currency_options = {
- symbol: '$',
- require_symbol: false,
- allow_space_after_symbol: false,
- symbol_after_digits: false,
- allow_negatives: true,
- parens_for_negatives: false,
- negative_sign_before_digits: false,
- negative_sign_after_digits: false,
- allow_negative_sign_placeholder: false,
- thousands_separator: ',',
- decimal_separator: '.',
- allow_decimal: true,
- require_decimal: false,
- digits_after_decimal: [2],
- allow_space_after_digits: false
- };
- function isCurrency(str, options) {
- assertString(str);
- options = merge(options, default_currency_options);
- return currencyRegex(options).test(str);
- }
-
- var btc = /^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/;
- function isBtcAddress(str) {
- assertString(str);
- return btc.test(str);
+ var pattern = whole_dollar_amount + (options.allow_decimal || options.require_decimal ? decimal_amount : ''); // default is negative sign before symbol, but there are two other options (besides parens)
+
+ if (options.allow_negatives && !options.parens_for_negatives) {
+ if (options.negative_sign_after_digits) {
+ pattern += negative;
+ } else if (options.negative_sign_before_digits) {
+ pattern = negative + pattern;
+ }
+ } // South African Rand, for example, uses R 123 (space) and R-123 (no space)
+
+
+ if (options.allow_negative_sign_placeholder) {
+ pattern = "( (?!\\-))?".concat(pattern);
+ } else if (options.allow_space_after_symbol) {
+ pattern = " ?".concat(pattern);
+ } else if (options.allow_space_after_digits) {
+ pattern += '( (?!$))?';
+ }
+
+ if (options.symbol_after_digits) {
+ pattern += symbol;
+ } else {
+ pattern = symbol + pattern;
+ }
+
+ if (options.allow_negatives) {
+ if (options.parens_for_negatives) {
+ pattern = "(\\(".concat(pattern, "\\)|").concat(pattern, ")");
+ } else if (!(options.negative_sign_before_digits || options.negative_sign_after_digits)) {
+ pattern = negative + pattern;
+ }
+ } // ensure there's a dollar and/or decimal amount, and that
+ // it doesn't start with a space or a negative sign followed by a space
+
+
+ return new RegExp("^(?!-? )(?=.*\\d)".concat(pattern, "$"));
+}
+
+var default_currency_options = {
+ symbol: '$',
+ require_symbol: false,
+ allow_space_after_symbol: false,
+ symbol_after_digits: false,
+ allow_negatives: true,
+ parens_for_negatives: false,
+ negative_sign_before_digits: false,
+ negative_sign_after_digits: false,
+ allow_negative_sign_placeholder: false,
+ thousands_separator: ',',
+ decimal_separator: '.',
+ allow_decimal: true,
+ require_decimal: false,
+ digits_after_decimal: [2],
+ allow_space_after_digits: false
+};
+function isCurrency(str, options) {
+ assertString(str);
+ options = merge(options, default_currency_options);
+ return currencyRegex(options).test(str);
+}
+
+var btc = /^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/;
+function isBtcAddress(str) {
+ assertString(str);
+ return btc.test(str);
+}
+
+/* eslint-disable max-len */
+// from http://goo.gl/0ejHHW
+
+var iso8601 = /^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-3])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;
+/* eslint-enable max-len */
+
+var isValidDate = function isValidDate(str) {
+ // str must have passed the ISO8601 check
+ // this check is meant to catch invalid dates
+ // like 2009-02-31
+ // first check for ordinal dates
+ var ordinalMatch = str.match(/^(\d{4})-?(\d{3})([ T]{1}\.*|$)/);
+
+ if (ordinalMatch) {
+ var oYear = Number(ordinalMatch[1]);
+ var oDay = Number(ordinalMatch[2]); // if is leap year
+
+ if (oYear % 4 === 0 && oYear % 100 !== 0 || oYear % 400 === 0) return oDay <= 366;
+ return oDay <= 365;
+ }
+
+ var match = str.match(/(\d{4})-?(\d{0,2})-?(\d*)/).map(Number);
+ var year = match[1];
+ var month = match[2];
+ var day = match[3];
+ var monthString = month ? "0".concat(month).slice(-2) : month;
+ var dayString = day ? "0".concat(day).slice(-2) : day; // create a date object and compare
+
+ var d = new Date("".concat(year, "-").concat(monthString || '01', "-").concat(dayString || '01'));
+
+ if (month && day) {
+ return d.getUTCFullYear() === year && d.getUTCMonth() + 1 === month && d.getUTCDate() === day;
+ }
+
+ return true;
+};
+
+function isISO8601(str, options) {
+ assertString(str);
+ var check = iso8601.test(str);
+ if (!options) return check;
+ if (check && options.strict) return isValidDate(str);
+ return check;
+}
+
+/* Based on https://tools.ietf.org/html/rfc3339#section-5.6 */
+
+var dateFullYear = /[0-9]{4}/;
+var dateMonth = /(0[1-9]|1[0-2])/;
+var dateMDay = /([12]\d|0[1-9]|3[01])/;
+var timeHour = /([01][0-9]|2[0-3])/;
+var timeMinute = /[0-5][0-9]/;
+var timeSecond = /([0-5][0-9]|60)/;
+var timeSecFrac = /(\.[0-9]+)?/;
+var timeNumOffset = new RegExp("[-+]".concat(timeHour.source, ":").concat(timeMinute.source));
+var timeOffset = new RegExp("([zZ]|".concat(timeNumOffset.source, ")"));
+var partialTime = new RegExp("".concat(timeHour.source, ":").concat(timeMinute.source, ":").concat(timeSecond.source).concat(timeSecFrac.source));
+var fullDate = new RegExp("".concat(dateFullYear.source, "-").concat(dateMonth.source, "-").concat(dateMDay.source));
+var fullTime = new RegExp("".concat(partialTime.source).concat(timeOffset.source));
+var rfc3339 = new RegExp("".concat(fullDate.source, "[ tT]").concat(fullTime.source));
+function isRFC3339(str) {
+ assertString(str);
+ return rfc3339.test(str);
+}
+
+var validISO31661Alpha2CountriesCodes = ['AD', 'AE', 'AF', 'AG', 'AI', 'AL', 'AM', 'AO', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AW', 'AX', 'AZ', 'BA', 'BB', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BL', 'BM', 'BN', 'BO', 'BQ', 'BR', 'BS', 'BT', 'BV', 'BW', 'BY', 'BZ', 'CA', 'CC', 'CD', 'CF', 'CG', 'CH', 'CI', 'CK', 'CL', 'CM', 'CN', 'CO', 'CR', 'CU', 'CV', 'CW', 'CX', 'CY', 'CZ', 'DE', 'DJ', 'DK', 'DM', 'DO', 'DZ', 'EC', 'EE', 'EG', 'EH', 'ER', 'ES', 'ET', 'FI', 'FJ', 'FK', 'FM', 'FO', 'FR', 'GA', 'GB', 'GD', 'GE', 'GF', 'GG', 'GH', 'GI', 'GL', 'GM', 'GN', 'GP', 'GQ', 'GR', 'GS', 'GT', 'GU', 'GW', 'GY', 'HK', 'HM', 'HN', 'HR', 'HT', 'HU', 'ID', 'IE', 'IL', 'IM', 'IN', 'IO', 'IQ', 'IR', 'IS', 'IT', 'JE', 'JM', 'JO', 'JP', 'KE', 'KG', 'KH', 'KI', 'KM', 'KN', 'KP', 'KR', 'KW', 'KY', 'KZ', 'LA', 'LB', 'LC', 'LI', 'LK', 'LR', 'LS', 'LT', 'LU', 'LV', 'LY', 'MA', 'MC', 'MD', 'ME', 'MF', 'MG', 'MH', 'MK', 'ML', 'MM', 'MN', 'MO', 'MP', 'MQ', 'MR', 'MS', 'MT', 'MU', 'MV', 'MW', 'MX', 'MY', 'MZ', 'NA', 'NC', 'NE', 'NF', 'NG', 'NI', 'NL', 'NO', 'NP', 'NR', 'NU', 'NZ', 'OM', 'PA', 'PE', 'PF', 'PG', 'PH', 'PK', 'PL', 'PM', 'PN', 'PR', 'PS', 'PT', 'PW', 'PY', 'QA', 'RE', 'RO', 'RS', 'RU', 'RW', 'SA', 'SB', 'SC', 'SD', 'SE', 'SG', 'SH', 'SI', 'SJ', 'SK', 'SL', 'SM', 'SN', 'SO', 'SR', 'SS', 'ST', 'SV', 'SX', 'SY', 'SZ', 'TC', 'TD', 'TF', 'TG', 'TH', 'TJ', 'TK', 'TL', 'TM', 'TN', 'TO', 'TR', 'TT', 'TV', 'TW', 'TZ', 'UA', 'UG', 'UM', 'US', 'UY', 'UZ', 'VA', 'VC', 'VE', 'VG', 'VI', 'VN', 'VU', 'WF', 'WS', 'YE', 'YT', 'ZA', 'ZM', 'ZW'];
+function isISO31661Alpha2(str) {
+ assertString(str);
+ return includes(validISO31661Alpha2CountriesCodes, str.toUpperCase());
+}
+
+var validISO31661Alpha3CountriesCodes = ['AFG', 'ALA', 'ALB', 'DZA', 'ASM', 'AND', 'AGO', 'AIA', 'ATA', 'ATG', 'ARG', 'ARM', 'ABW', 'AUS', 'AUT', 'AZE', 'BHS', 'BHR', 'BGD', 'BRB', 'BLR', 'BEL', 'BLZ', 'BEN', 'BMU', 'BTN', 'BOL', 'BES', 'BIH', 'BWA', 'BVT', 'BRA', 'IOT', 'BRN', 'BGR', 'BFA', 'BDI', 'KHM', 'CMR', 'CAN', 'CPV', 'CYM', 'CAF', 'TCD', 'CHL', 'CHN', 'CXR', 'CCK', 'COL', 'COM', 'COG', 'COD', 'COK', 'CRI', 'CIV', 'HRV', 'CUB', 'CUW', 'CYP', 'CZE', 'DNK', 'DJI', 'DMA', 'DOM', 'ECU', 'EGY', 'SLV', 'GNQ', 'ERI', 'EST', 'ETH', 'FLK', 'FRO', 'FJI', 'FIN', 'FRA', 'GUF', 'PYF', 'ATF', 'GAB', 'GMB', 'GEO', 'DEU', 'GHA', 'GIB', 'GRC', 'GRL', 'GRD', 'GLP', 'GUM', 'GTM', 'GGY', 'GIN', 'GNB', 'GUY', 'HTI', 'HMD', 'VAT', 'HND', 'HKG', 'HUN', 'ISL', 'IND', 'IDN', 'IRN', 'IRQ', 'IRL', 'IMN', 'ISR', 'ITA', 'JAM', 'JPN', 'JEY', 'JOR', 'KAZ', 'KEN', 'KIR', 'PRK', 'KOR', 'KWT', 'KGZ', 'LAO', 'LVA', 'LBN', 'LSO', 'LBR', 'LBY', 'LIE', 'LTU', 'LUX', 'MAC', 'MKD', 'MDG', 'MWI', 'MYS', 'MDV', 'MLI', 'MLT', 'MHL', 'MTQ', 'MRT', 'MUS', 'MYT', 'MEX', 'FSM', 'MDA', 'MCO', 'MNG', 'MNE', 'MSR', 'MAR', 'MOZ', 'MMR', 'NAM', 'NRU', 'NPL', 'NLD', 'NCL', 'NZL', 'NIC', 'NER', 'NGA', 'NIU', 'NFK', 'MNP', 'NOR', 'OMN', 'PAK', 'PLW', 'PSE', 'PAN', 'PNG', 'PRY', 'PER', 'PHL', 'PCN', 'POL', 'PRT', 'PRI', 'QAT', 'REU', 'ROU', 'RUS', 'RWA', 'BLM', 'SHN', 'KNA', 'LCA', 'MAF', 'SPM', 'VCT', 'WSM', 'SMR', 'STP', 'SAU', 'SEN', 'SRB', 'SYC', 'SLE', 'SGP', 'SXM', 'SVK', 'SVN', 'SLB', 'SOM', 'ZAF', 'SGS', 'SSD', 'ESP', 'LKA', 'SDN', 'SUR', 'SJM', 'SWZ', 'SWE', 'CHE', 'SYR', 'TWN', 'TJK', 'TZA', 'THA', 'TLS', 'TGO', 'TKL', 'TON', 'TTO', 'TUN', 'TUR', 'TKM', 'TCA', 'TUV', 'UGA', 'UKR', 'ARE', 'GBR', 'USA', 'UMI', 'URY', 'UZB', 'VUT', 'VEN', 'VNM', 'VGB', 'VIR', 'WLF', 'ESH', 'YEM', 'ZMB', 'ZWE'];
+function isISO31661Alpha3(str) {
+ assertString(str);
+ return includes(validISO31661Alpha3CountriesCodes, str.toUpperCase());
+}
+
+var base32 = /^[A-Z2-7]+=*$/;
+function isBase32(str) {
+ assertString(str);
+ var len = str.length;
+
+ if (len % 8 === 0 && base32.test(str)) {
+ return true;
}
- /* eslint-disable max-len */
- // from http://goo.gl/0ejHHW
-
- var iso8601 = /^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-3])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;
- /* eslint-enable max-len */
-
- var isValidDate = function isValidDate(str) {
- // str must have passed the ISO8601 check
- // this check is meant to catch invalid dates
- // like 2009-02-31
- // first check for ordinal dates
- var ordinalMatch = str.match(/^(\d{4})-?(\d{3})([ T]{1}\.*|$)/);
+ return false;
+}
- if (ordinalMatch) {
- var oYear = Number(ordinalMatch[1]);
- var oDay = Number(ordinalMatch[2]); // if is leap year
-
- if (oYear % 4 === 0 && oYear % 100 !== 0 || oYear % 400 === 0) return oDay <= 366;
- return oDay <= 365;
- }
-
- var match = str.match(/(\d{4})-?(\d{0,2})-?(\d*)/).map(Number);
- var year = match[1];
- var month = match[2];
- var day = match[3];
- var monthString = month ? "0".concat(month).slice(-2) : month;
- var dayString = day ? "0".concat(day).slice(-2) : day; // create a date object and compare
-
- var d = new Date("".concat(year, "-").concat(monthString || '01', "-").concat(dayString || '01'));
-
- if (month && day) {
- return d.getUTCFullYear() === year && d.getUTCMonth() + 1 === month && d.getUTCDate() === day;
- }
+var base58Reg = /^[A-HJ-NP-Za-km-z1-9]*$/;
+function isBase58(str) {
+ assertString(str);
+ if (base58Reg.test(str)) {
return true;
- };
-
- function isISO8601(str, options) {
- assertString(str);
- var check = iso8601.test(str);
- if (!options) return check;
- if (check && options.strict) return isValidDate(str);
- return check;
- }
-
- /* Based on https://tools.ietf.org/html/rfc3339#section-5.6 */
-
- var dateFullYear = /[0-9]{4}/;
- var dateMonth = /(0[1-9]|1[0-2])/;
- var dateMDay = /([12]\d|0[1-9]|3[01])/;
- var timeHour = /([01][0-9]|2[0-3])/;
- var timeMinute = /[0-5][0-9]/;
- var timeSecond = /([0-5][0-9]|60)/;
- var timeSecFrac = /(\.[0-9]+)?/;
- var timeNumOffset = new RegExp("[-+]".concat(timeHour.source, ":").concat(timeMinute.source));
- var timeOffset = new RegExp("([zZ]|".concat(timeNumOffset.source, ")"));
- var partialTime = new RegExp("".concat(timeHour.source, ":").concat(timeMinute.source, ":").concat(timeSecond.source).concat(timeSecFrac.source));
- var fullDate = new RegExp("".concat(dateFullYear.source, "-").concat(dateMonth.source, "-").concat(dateMDay.source));
- var fullTime = new RegExp("".concat(partialTime.source).concat(timeOffset.source));
- var rfc3339 = new RegExp("".concat(fullDate.source, "[ tT]").concat(fullTime.source));
- function isRFC3339(str) {
- assertString(str);
- return rfc3339.test(str);
}
- var validISO31661Alpha2CountriesCodes = ['AD', 'AE', 'AF', 'AG', 'AI', 'AL', 'AM', 'AO', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AW', 'AX', 'AZ', 'BA', 'BB', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BL', 'BM', 'BN', 'BO', 'BQ', 'BR', 'BS', 'BT', 'BV', 'BW', 'BY', 'BZ', 'CA', 'CC', 'CD', 'CF', 'CG', 'CH', 'CI', 'CK', 'CL', 'CM', 'CN', 'CO', 'CR', 'CU', 'CV', 'CW', 'CX', 'CY', 'CZ', 'DE', 'DJ', 'DK', 'DM', 'DO', 'DZ', 'EC', 'EE', 'EG', 'EH', 'ER', 'ES', 'ET', 'FI', 'FJ', 'FK', 'FM', 'FO', 'FR', 'GA', 'GB', 'GD', 'GE', 'GF', 'GG', 'GH', 'GI', 'GL', 'GM', 'GN', 'GP', 'GQ', 'GR', 'GS', 'GT', 'GU', 'GW', 'GY', 'HK', 'HM', 'HN', 'HR', 'HT', 'HU', 'ID', 'IE', 'IL', 'IM', 'IN', 'IO', 'IQ', 'IR', 'IS', 'IT', 'JE', 'JM', 'JO', 'JP', 'KE', 'KG', 'KH', 'KI', 'KM', 'KN', 'KP', 'KR', 'KW', 'KY', 'KZ', 'LA', 'LB', 'LC', 'LI', 'LK', 'LR', 'LS', 'LT', 'LU', 'LV', 'LY', 'MA', 'MC', 'MD', 'ME', 'MF', 'MG', 'MH', 'MK', 'ML', 'MM', 'MN', 'MO', 'MP', 'MQ', 'MR', 'MS', 'MT', 'MU', 'MV', 'MW', 'MX', 'MY', 'MZ', 'NA', 'NC', 'NE', 'NF', 'NG', 'NI', 'NL', 'NO', 'NP', 'NR', 'NU', 'NZ', 'OM', 'PA', 'PE', 'PF', 'PG', 'PH', 'PK', 'PL', 'PM', 'PN', 'PR', 'PS', 'PT', 'PW', 'PY', 'QA', 'RE', 'RO', 'RS', 'RU', 'RW', 'SA', 'SB', 'SC', 'SD', 'SE', 'SG', 'SH', 'SI', 'SJ', 'SK', 'SL', 'SM', 'SN', 'SO', 'SR', 'SS', 'ST', 'SV', 'SX', 'SY', 'SZ', 'TC', 'TD', 'TF', 'TG', 'TH', 'TJ', 'TK', 'TL', 'TM', 'TN', 'TO', 'TR', 'TT', 'TV', 'TW', 'TZ', 'UA', 'UG', 'UM', 'US', 'UY', 'UZ', 'VA', 'VC', 'VE', 'VG', 'VI', 'VN', 'VU', 'WF', 'WS', 'YE', 'YT', 'ZA', 'ZM', 'ZW'];
- function isISO31661Alpha2(str) {
- assertString(str);
- return includes(validISO31661Alpha2CountriesCodes, str.toUpperCase());
- }
+ return false;
+}
- var validISO31661Alpha3CountriesCodes = ['AFG', 'ALA', 'ALB', 'DZA', 'ASM', 'AND', 'AGO', 'AIA', 'ATA', 'ATG', 'ARG', 'ARM', 'ABW', 'AUS', 'AUT', 'AZE', 'BHS', 'BHR', 'BGD', 'BRB', 'BLR', 'BEL', 'BLZ', 'BEN', 'BMU', 'BTN', 'BOL', 'BES', 'BIH', 'BWA', 'BVT', 'BRA', 'IOT', 'BRN', 'BGR', 'BFA', 'BDI', 'KHM', 'CMR', 'CAN', 'CPV', 'CYM', 'CAF', 'TCD', 'CHL', 'CHN', 'CXR', 'CCK', 'COL', 'COM', 'COG', 'COD', 'COK', 'CRI', 'CIV', 'HRV', 'CUB', 'CUW', 'CYP', 'CZE', 'DNK', 'DJI', 'DMA', 'DOM', 'ECU', 'EGY', 'SLV', 'GNQ', 'ERI', 'EST', 'ETH', 'FLK', 'FRO', 'FJI', 'FIN', 'FRA', 'GUF', 'PYF', 'ATF', 'GAB', 'GMB', 'GEO', 'DEU', 'GHA', 'GIB', 'GRC', 'GRL', 'GRD', 'GLP', 'GUM', 'GTM', 'GGY', 'GIN', 'GNB', 'GUY', 'HTI', 'HMD', 'VAT', 'HND', 'HKG', 'HUN', 'ISL', 'IND', 'IDN', 'IRN', 'IRQ', 'IRL', 'IMN', 'ISR', 'ITA', 'JAM', 'JPN', 'JEY', 'JOR', 'KAZ', 'KEN', 'KIR', 'PRK', 'KOR', 'KWT', 'KGZ', 'LAO', 'LVA', 'LBN', 'LSO', 'LBR', 'LBY', 'LIE', 'LTU', 'LUX', 'MAC', 'MKD', 'MDG', 'MWI', 'MYS', 'MDV', 'MLI', 'MLT', 'MHL', 'MTQ', 'MRT', 'MUS', 'MYT', 'MEX', 'FSM', 'MDA', 'MCO', 'MNG', 'MNE', 'MSR', 'MAR', 'MOZ', 'MMR', 'NAM', 'NRU', 'NPL', 'NLD', 'NCL', 'NZL', 'NIC', 'NER', 'NGA', 'NIU', 'NFK', 'MNP', 'NOR', 'OMN', 'PAK', 'PLW', 'PSE', 'PAN', 'PNG', 'PRY', 'PER', 'PHL', 'PCN', 'POL', 'PRT', 'PRI', 'QAT', 'REU', 'ROU', 'RUS', 'RWA', 'BLM', 'SHN', 'KNA', 'LCA', 'MAF', 'SPM', 'VCT', 'WSM', 'SMR', 'STP', 'SAU', 'SEN', 'SRB', 'SYC', 'SLE', 'SGP', 'SXM', 'SVK', 'SVN', 'SLB', 'SOM', 'ZAF', 'SGS', 'SSD', 'ESP', 'LKA', 'SDN', 'SUR', 'SJM', 'SWZ', 'SWE', 'CHE', 'SYR', 'TWN', 'TJK', 'TZA', 'THA', 'TLS', 'TGO', 'TKL', 'TON', 'TTO', 'TUN', 'TUR', 'TKM', 'TCA', 'TUV', 'UGA', 'UKR', 'ARE', 'GBR', 'USA', 'UMI', 'URY', 'UZB', 'VUT', 'VEN', 'VNM', 'VGB', 'VIR', 'WLF', 'ESH', 'YEM', 'ZMB', 'ZWE'];
- function isISO31661Alpha3(str) {
- assertString(str);
- return includes(validISO31661Alpha3CountriesCodes, str.toUpperCase());
- }
+var validMediaType = /^[a-z]+\/[a-z0-9\-\+]+$/i;
+var validAttribute = /^[a-z\-]+=[a-z0-9\-]+$/i;
+var validData = /^[a-z0-9!\$&'\(\)\*\+,;=\-\._~:@\/\?%\s]*$/i;
+function isDataURI(str) {
+ assertString(str);
+ var data = str.split(',');
- var base32 = /^[A-Z2-7]+=*$/;
- function isBase32(str) {
- assertString(str);
- var len = str.length;
+ if (data.length < 2) {
+ return false;
+ }
- if (len % 8 === 0 && base32.test(str)) {
- return true;
- }
+ var attributes = data.shift().trim().split(';');
+ var schemeAndMediaType = attributes.shift();
+ if (schemeAndMediaType.substr(0, 5) !== 'data:') {
return false;
}
- var validMediaType = /^[a-z]+\/[a-z0-9\-\+]+$/i;
- var validAttribute = /^[a-z\-]+=[a-z0-9\-]+$/i;
- var validData = /^[a-z0-9!\$&'\(\)\*\+,;=\-\._~:@\/\?%\s]*$/i;
- function isDataURI(str) {
- assertString(str);
- var data = str.split(',');
-
- if (data.length < 2) {
- return false;
- }
+ var mediaType = schemeAndMediaType.substr(5);
- var attributes = data.shift().trim().split(';');
- var schemeAndMediaType = attributes.shift();
+ if (mediaType !== '' && !validMediaType.test(mediaType)) {
+ return false;
+ }
- if (schemeAndMediaType.substr(0, 5) !== 'data:') {
+ for (var i = 0; i < attributes.length; i++) {
+ if (i === attributes.length - 1 && attributes[i].toLowerCase() === 'base64') {// ok
+ } else if (!validAttribute.test(attributes[i])) {
return false;
}
+ }
- var mediaType = schemeAndMediaType.substr(5);
-
- if (mediaType !== '' && !validMediaType.test(mediaType)) {
+ for (var _i = 0; _i < data.length; _i++) {
+ if (!validData.test(data[_i])) {
return false;
}
-
- for (var i = 0; i < attributes.length; i++) {
- if (i === attributes.length - 1 && attributes[i].toLowerCase() === 'base64') {// ok
- } else if (!validAttribute.test(attributes[i])) {
- return false;
- }
- }
-
- for (var _i = 0; _i < data.length; _i++) {
- if (!validData.test(data[_i])) {
- return false;
- }
- }
-
- return true;
- }
-
- var magnetURI = /^magnet:\?xt=urn:[a-z0-9]+:[a-z0-9]{32,40}&dn=.+&tr=.+$/i;
- function isMagnetURI(url) {
- assertString(url);
- return magnetURI.test(url.trim());
- }
-
- /*
- Checks if the provided string matches to a correct Media type format (MIME type)
-
- This function only checks is the string format follows the
- etablished rules by the according RFC specifications.
- This function supports 'charset' in textual media types
- (https://tools.ietf.org/html/rfc6657).
-
- This function does not check against all the media types listed
- by the IANA (https://www.iana.org/assignments/media-types/media-types.xhtml)
- because of lightness purposes : it would require to include
- all these MIME types in this librairy, which would weigh it
- significantly. This kind of effort maybe is not worth for the use that
- this function has in this entire librairy.
-
- More informations in the RFC specifications :
- - https://tools.ietf.org/html/rfc2045
- - https://tools.ietf.org/html/rfc2046
- - https://tools.ietf.org/html/rfc7231#section-3.1.1.1
- - https://tools.ietf.org/html/rfc7231#section-3.1.1.5
- */
- // Match simple MIME types
- // NB :
- // Subtype length must not exceed 100 characters.
- // This rule does not comply to the RFC specs (what is the max length ?).
-
- var mimeTypeSimple = /^(application|audio|font|image|message|model|multipart|text|video)\/[a-zA-Z0-9\.\-\+]{1,100}$/i; // eslint-disable-line max-len
- // Handle "charset" in "text/*"
-
- var mimeTypeText = /^text\/[a-zA-Z0-9\.\-\+]{1,100};\s?charset=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?$/i; // eslint-disable-line max-len
- // Handle "boundary" in "multipart/*"
-
- var mimeTypeMultipart = /^multipart\/[a-zA-Z0-9\.\-\+]{1,100}(;\s?(boundary|charset)=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?){0,2}$/i; // eslint-disable-line max-len
-
- function isMimeType(str) {
- assertString(str);
- return mimeTypeSimple.test(str) || mimeTypeText.test(str) || mimeTypeMultipart.test(str);
}
- var lat = /^\(?[+-]?(90(\.0+)?|[1-8]?\d(\.\d+)?)$/;
- var _long = /^\s?[+-]?(180(\.0+)?|1[0-7]\d(\.\d+)?|\d{1,2}(\.\d+)?)\)?$/;
- var latDMS = /^(([1-8]?\d)\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|90\D+0\D+0)\D+[NSns]?$/i;
- var longDMS = /^\s*([1-7]?\d{1,2}\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|180\D+0\D+0)\D+[EWew]?$/i;
- var defaultLatLongOptions = {
- checkDMS: false
- };
- function isLatLong(str, options) {
- assertString(str);
- options = merge(options, defaultLatLongOptions);
- if (!str.includes(',')) return false;
- var pair = str.split(',');
- if (pair[0].startsWith('(') && !pair[1].endsWith(')') || pair[1].endsWith(')') && !pair[0].startsWith('(')) return false;
-
- if (options.checkDMS) {
- return latDMS.test(pair[0]) && longDMS.test(pair[1]);
- }
-
- return lat.test(pair[0]) && _long.test(pair[1]);
- }
-
- var threeDigit = /^\d{3}$/;
- var fourDigit = /^\d{4}$/;
- var fiveDigit = /^\d{5}$/;
- var sixDigit = /^\d{6}$/;
- var patterns = {
- AD: /^AD\d{3}$/,
- AT: fourDigit,
- AU: fourDigit,
- AZ: /^AZ\d{4}$/,
- BE: fourDigit,
- BG: fourDigit,
- BR: /^\d{5}-\d{3}$/,
- CA: /^[ABCEGHJKLMNPRSTVXY]\d[ABCEGHJ-NPRSTV-Z][\s\-]?\d[ABCEGHJ-NPRSTV-Z]\d$/i,
- CH: fourDigit,
- CZ: /^\d{3}\s?\d{2}$/,
- DE: fiveDigit,
- DK: fourDigit,
- DZ: fiveDigit,
- EE: fiveDigit,
- ES: /^(5[0-2]{1}|[0-4]{1}\d{1})\d{3}$/,
- FI: fiveDigit,
- FR: /^\d{2}\s?\d{3}$/,
- GB: /^(gir\s?0aa|[a-z]{1,2}\d[\da-z]?\s?(\d[a-z]{2})?)$/i,
- GR: /^\d{3}\s?\d{2}$/,
- HR: /^([1-5]\d{4}$)/,
- HU: fourDigit,
- ID: fiveDigit,
- IE: /^(?!.*(?:o))[A-z]\d[\dw]\s\w{4}$/i,
- IL: /^(\d{5}|\d{7})$/,
- IN: /^((?!10|29|35|54|55|65|66|86|87|88|89)[1-9][0-9]{5})$/,
- IS: threeDigit,
- IT: fiveDigit,
- JP: /^\d{3}\-\d{4}$/,
- KE: fiveDigit,
- LI: /^(948[5-9]|949[0-7])$/,
- LT: /^LT\-\d{5}$/,
- LU: fourDigit,
- LV: /^LV\-\d{4}$/,
- MX: fiveDigit,
- MT: /^[A-Za-z]{3}\s{0,1}\d{4}$/,
- NL: /^\d{4}\s?[a-z]{2}$/i,
- NO: fourDigit,
- NP: /^(10|21|22|32|33|34|44|45|56|57)\d{3}$|^(977)$/i,
- NZ: fourDigit,
- PL: /^\d{2}\-\d{3}$/,
- PR: /^00[679]\d{2}([ -]\d{4})?$/,
- PT: /^\d{4}\-\d{3}?$/,
- RO: sixDigit,
- RU: sixDigit,
- SA: fiveDigit,
- SE: /^[1-9]\d{2}\s?\d{2}$/,
- SI: fourDigit,
- SK: /^\d{3}\s?\d{2}$/,
- TN: fourDigit,
- TW: /^\d{3}(\d{2})?$/,
- UA: fiveDigit,
- US: /^\d{5}(-\d{4})?$/,
- ZA: fourDigit,
- ZM: fiveDigit
- };
- var locales$4 = Object.keys(patterns);
- function isPostalCode(str, locale) {
- assertString(str);
+ return true;
+}
+
+var magnetURI = /^magnet:\?xt=urn:[a-z0-9]+:[a-z0-9]{32,40}&dn=.+&tr=.+$/i;
+function isMagnetURI(url) {
+ assertString(url);
+ return magnetURI.test(url.trim());
+}
+
+/*
+ Checks if the provided string matches to a correct Media type format (MIME type)
+
+ This function only checks is the string format follows the
+ etablished rules by the according RFC specifications.
+ This function supports 'charset' in textual media types
+ (https://tools.ietf.org/html/rfc6657).
+
+ This function does not check against all the media types listed
+ by the IANA (https://www.iana.org/assignments/media-types/media-types.xhtml)
+ because of lightness purposes : it would require to include
+ all these MIME types in this librairy, which would weigh it
+ significantly. This kind of effort maybe is not worth for the use that
+ this function has in this entire librairy.
+
+ More informations in the RFC specifications :
+ - https://tools.ietf.org/html/rfc2045
+ - https://tools.ietf.org/html/rfc2046
+ - https://tools.ietf.org/html/rfc7231#section-3.1.1.1
+ - https://tools.ietf.org/html/rfc7231#section-3.1.1.5
+*/
+// Match simple MIME types
+// NB :
+// Subtype length must not exceed 100 characters.
+// This rule does not comply to the RFC specs (what is the max length ?).
+
+var mimeTypeSimple = /^(application|audio|font|image|message|model|multipart|text|video)\/[a-zA-Z0-9\.\-\+]{1,100}$/i; // eslint-disable-line max-len
+// Handle "charset" in "text/*"
+
+var mimeTypeText = /^text\/[a-zA-Z0-9\.\-\+]{1,100};\s?charset=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?$/i; // eslint-disable-line max-len
+// Handle "boundary" in "multipart/*"
+
+var mimeTypeMultipart = /^multipart\/[a-zA-Z0-9\.\-\+]{1,100}(;\s?(boundary|charset)=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?){0,2}$/i; // eslint-disable-line max-len
+
+function isMimeType(str) {
+ assertString(str);
+ return mimeTypeSimple.test(str) || mimeTypeText.test(str) || mimeTypeMultipart.test(str);
+}
+
+var lat = /^\(?[+-]?(90(\.0+)?|[1-8]?\d(\.\d+)?)$/;
+var _long = /^\s?[+-]?(180(\.0+)?|1[0-7]\d(\.\d+)?|\d{1,2}(\.\d+)?)\)?$/;
+var latDMS = /^(([1-8]?\d)\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|90\D+0\D+0)\D+[NSns]?$/i;
+var longDMS = /^\s*([1-7]?\d{1,2}\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|180\D+0\D+0)\D+[EWew]?$/i;
+var defaultLatLongOptions = {
+ checkDMS: false
+};
+function isLatLong(str, options) {
+ assertString(str);
+ options = merge(options, defaultLatLongOptions);
+ if (!str.includes(',')) return false;
+ var pair = str.split(',');
+ if (pair[0].startsWith('(') && !pair[1].endsWith(')') || pair[1].endsWith(')') && !pair[0].startsWith('(')) return false;
+
+ if (options.checkDMS) {
+ return latDMS.test(pair[0]) && longDMS.test(pair[1]);
+ }
+
+ return lat.test(pair[0]) && _long.test(pair[1]);
+}
+
+var threeDigit = /^\d{3}$/;
+var fourDigit = /^\d{4}$/;
+var fiveDigit = /^\d{5}$/;
+var sixDigit = /^\d{6}$/;
+var patterns = {
+ AD: /^AD\d{3}$/,
+ AT: fourDigit,
+ AU: fourDigit,
+ AZ: /^AZ\d{4}$/,
+ BE: fourDigit,
+ BG: fourDigit,
+ BR: /^\d{5}-\d{3}$/,
+ BY: /2[1-4]{1}\d{4}$/,
+ CA: /^[ABCEGHJKLMNPRSTVXY]\d[ABCEGHJ-NPRSTV-Z][\s\-]?\d[ABCEGHJ-NPRSTV-Z]\d$/i,
+ CH: fourDigit,
+ CZ: /^\d{3}\s?\d{2}$/,
+ DE: fiveDigit,
+ DK: fourDigit,
+ DO: fiveDigit,
+ DZ: fiveDigit,
+ EE: fiveDigit,
+ ES: /^(5[0-2]{1}|[0-4]{1}\d{1})\d{3}$/,
+ FI: fiveDigit,
+ FR: /^\d{2}\s?\d{3}$/,
+ GB: /^(gir\s?0aa|[a-z]{1,2}\d[\da-z]?\s?(\d[a-z]{2})?)$/i,
+ GR: /^\d{3}\s?\d{2}$/,
+ HR: /^([1-5]\d{4}$)/,
+ HT: /^HT\d{4}$/,
+ HU: fourDigit,
+ ID: fiveDigit,
+ IE: /^(?!.*(?:o))[A-z]\d[\dw]\s\w{4}$/i,
+ IL: /^(\d{5}|\d{7})$/,
+ IN: /^((?!10|29|35|54|55|65|66|86|87|88|89)[1-9][0-9]{5})$/,
+ IS: threeDigit,
+ IT: fiveDigit,
+ JP: /^\d{3}\-\d{4}$/,
+ KE: fiveDigit,
+ LI: /^(948[5-9]|949[0-7])$/,
+ LT: /^LT\-\d{5}$/,
+ LU: fourDigit,
+ LV: /^LV\-\d{4}$/,
+ MX: fiveDigit,
+ MT: /^[A-Za-z]{3}\s{0,1}\d{4}$/,
+ NL: /^\d{4}\s?[a-z]{2}$/i,
+ NO: fourDigit,
+ NP: /^(10|21|22|32|33|34|44|45|56|57)\d{3}$|^(977)$/i,
+ NZ: fourDigit,
+ PL: /^\d{2}\-\d{3}$/,
+ PR: /^00[679]\d{2}([ -]\d{4})?$/,
+ PT: /^\d{4}\-\d{3}?$/,
+ RO: sixDigit,
+ RU: sixDigit,
+ SA: fiveDigit,
+ SE: /^[1-9]\d{2}\s?\d{2}$/,
+ SI: fourDigit,
+ SK: /^\d{3}\s?\d{2}$/,
+ TH: fiveDigit,
+ TN: fourDigit,
+ TW: /^\d{3}(\d{2})?$/,
+ UA: fiveDigit,
+ US: /^\d{5}(-\d{4})?$/,
+ ZA: fourDigit,
+ ZM: fiveDigit
+};
+var locales$4 = Object.keys(patterns);
+function isPostalCode(str, locale) {
+ assertString(str);
+
+ if (locale in patterns) {
+ return patterns[locale].test(str);
+ } else if (locale === 'any') {
+ for (var key in patterns) {
+ // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
+ // istanbul ignore else
+ if (patterns.hasOwnProperty(key)) {
+ var pattern = patterns[key];
- if (locale in patterns) {
- return patterns[locale].test(str);
- } else if (locale === 'any') {
- for (var key in patterns) {
- // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md#ignoring-code-for-coverage-purposes
- // istanbul ignore else
- if (patterns.hasOwnProperty(key)) {
- var pattern = patterns[key];
-
- if (pattern.test(str)) {
- return true;
- }
+ if (pattern.test(str)) {
+ return true;
}
}
-
- return false;
}
- throw new Error("Invalid locale '".concat(locale, "'"));
+ return false;
}
- function ltrim(str, chars) {
- assertString(str); // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
+ throw new Error("Invalid locale '".concat(locale, "'"));
+}
- var pattern = chars ? new RegExp("^[".concat(chars.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), "]+"), 'g') : /^\s+/g;
- return str.replace(pattern, '');
- }
+function ltrim(str, chars) {
+ assertString(str); // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
- function rtrim(str, chars) {
- assertString(str); // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
+ var pattern = chars ? new RegExp("^[".concat(chars.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), "]+"), 'g') : /^\s+/g;
+ return str.replace(pattern, '');
+}
- var pattern = chars ? new RegExp("[".concat(chars.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), "]+$"), 'g') : /\s+$/g;
- return str.replace(pattern, '');
- }
+function rtrim(str, chars) {
+ assertString(str); // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
- function trim(str, chars) {
- return rtrim(ltrim(str, chars), chars);
- }
+ var pattern = chars ? new RegExp("[".concat(chars.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), "]+$"), 'g') : /\s+$/g;
+ return str.replace(pattern, '');
+}
- function escape(str) {
- assertString(str);
- return str.replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>').replace(/\//g, '/').replace(/\\/g, '\').replace(/`/g, '`');
- }
+function trim(str, chars) {
+ return rtrim(ltrim(str, chars), chars);
+}
- function unescape(str) {
- assertString(str);
- return str.replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, "'").replace(/</g, '<').replace(/>/g, '>').replace(///g, '/').replace(/\/g, '\\').replace(/`/g, '`');
- }
+function escape(str) {
+ assertString(str);
+ return str.replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>').replace(/\//g, '/').replace(/\\/g, '\').replace(/`/g, '`');
+}
- function blacklist$1(str, chars) {
- assertString(str);
- return str.replace(new RegExp("[".concat(chars, "]+"), 'g'), '');
- }
+function unescape(str) {
+ assertString(str);
+ return str.replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, "'").replace(/</g, '<').replace(/>/g, '>').replace(///g, '/').replace(/\/g, '\\').replace(/`/g, '`');
+}
- function stripLow(str, keep_new_lines) {
- assertString(str);
- var chars = keep_new_lines ? '\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F' : '\\x00-\\x1F\\x7F';
- return blacklist$1(str, chars);
- }
+function blacklist$1(str, chars) {
+ assertString(str);
+ return str.replace(new RegExp("[".concat(chars, "]+"), 'g'), '');
+}
- function whitelist(str, chars) {
- assertString(str);
- return str.replace(new RegExp("[^".concat(chars, "]+"), 'g'), '');
- }
+function stripLow(str, keep_new_lines) {
+ assertString(str);
+ var chars = keep_new_lines ? '\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F' : '\\x00-\\x1F\\x7F';
+ return blacklist$1(str, chars);
+}
- function isWhitelisted(str, chars) {
- assertString(str);
+function whitelist(str, chars) {
+ assertString(str);
+ return str.replace(new RegExp("[^".concat(chars, "]+"), 'g'), '');
+}
- for (var i = str.length - 1; i >= 0; i--) {
- if (chars.indexOf(str[i]) === -1) {
- return false;
- }
- }
+function isWhitelisted(str, chars) {
+ assertString(str);
- return true;
+ for (var i = str.length - 1; i >= 0; i--) {
+ if (chars.indexOf(str[i]) === -1) {
+ return false;
+ }
}
- var default_normalize_email_options = {
- // The following options apply to all email addresses
- // Lowercases the local part of the email address.
- // Please note this may violate RFC 5321 as per http://stackoverflow.com/a/9808332/192024).
- // The domain is always lowercased, as per RFC 1035
- all_lowercase: true,
- // The following conversions are specific to GMail
- // Lowercases the local part of the GMail address (known to be case-insensitive)
- gmail_lowercase: true,
- // Removes dots from the local part of the email address, as that's ignored by GMail
- gmail_remove_dots: true,
- // Removes the subaddress (e.g. "+foo") from the email address
- gmail_remove_subaddress: true,
- // Conversts the googlemail.com domain to gmail.com
- gmail_convert_googlemaildotcom: true,
- // The following conversions are specific to Outlook.com / Windows Live / Hotmail
- // Lowercases the local part of the Outlook.com address (known to be case-insensitive)
- outlookdotcom_lowercase: true,
- // Removes the subaddress (e.g. "+foo") from the email address
- outlookdotcom_remove_subaddress: true,
- // The following conversions are specific to Yahoo
- // Lowercases the local part of the Yahoo address (known to be case-insensitive)
- yahoo_lowercase: true,
- // Removes the subaddress (e.g. "-foo") from the email address
- yahoo_remove_subaddress: true,
- // The following conversions are specific to Yandex
- // Lowercases the local part of the Yandex address (known to be case-insensitive)
- yandex_lowercase: true,
- // The following conversions are specific to iCloud
- // Lowercases the local part of the iCloud address (known to be case-insensitive)
- icloud_lowercase: true,
- // Removes the subaddress (e.g. "+foo") from the email address
- icloud_remove_subaddress: true
- }; // List of domains used by iCloud
-
- var icloud_domains = ['icloud.com', 'me.com']; // List of domains used by Outlook.com and its predecessors
- // This list is likely incomplete.
- // Partial reference:
- // https://blogs.office.com/2013/04/17/outlook-com-gets-two-step-verification-sign-in-by-alias-and-new-international-domains/
-
- var outlookdotcom_domains = ['hotmail.at', 'hotmail.be', 'hotmail.ca', 'hotmail.cl', 'hotmail.co.il', 'hotmail.co.nz', 'hotmail.co.th', 'hotmail.co.uk', 'hotmail.com', 'hotmail.com.ar', 'hotmail.com.au', 'hotmail.com.br', 'hotmail.com.gr', 'hotmail.com.mx', 'hotmail.com.pe', 'hotmail.com.tr', 'hotmail.com.vn', 'hotmail.cz', 'hotmail.de', 'hotmail.dk', 'hotmail.es', 'hotmail.fr', 'hotmail.hu', 'hotmail.id', 'hotmail.ie', 'hotmail.in', 'hotmail.it', 'hotmail.jp', 'hotmail.kr', 'hotmail.lv', 'hotmail.my', 'hotmail.ph', 'hotmail.pt', 'hotmail.sa', 'hotmail.sg', 'hotmail.sk', 'live.be', 'live.co.uk', 'live.com', 'live.com.ar', 'live.com.mx', 'live.de', 'live.es', 'live.eu', 'live.fr', 'live.it', 'live.nl', 'msn.com', 'outlook.at', 'outlook.be', 'outlook.cl', 'outlook.co.il', 'outlook.co.nz', 'outlook.co.th', 'outlook.com', 'outlook.com.ar', 'outlook.com.au', 'outlook.com.br', 'outlook.com.gr', 'outlook.com.pe', 'outlook.com.tr', 'outlook.com.vn', 'outlook.cz', 'outlook.de', 'outlook.dk', 'outlook.es', 'outlook.fr', 'outlook.hu', 'outlook.id', 'outlook.ie', 'outlook.in', 'outlook.it', 'outlook.jp', 'outlook.kr', 'outlook.lv', 'outlook.my', 'outlook.ph', 'outlook.pt', 'outlook.sa', 'outlook.sg', 'outlook.sk', 'passport.com']; // List of domains used by Yahoo Mail
- // This list is likely incomplete
-
- var yahoo_domains = ['rocketmail.com', 'yahoo.ca', 'yahoo.co.uk', 'yahoo.com', 'yahoo.de', 'yahoo.fr', 'yahoo.in', 'yahoo.it', 'ymail.com']; // List of domains used by yandex.ru
-
- var yandex_domains = ['yandex.ru', 'yandex.ua', 'yandex.kz', 'yandex.com', 'yandex.by', 'ya.ru']; // replace single dots, but not multiple consecutive dots
-
- function dotsReplacer(match) {
- if (match.length > 1) {
- return match;
- }
-
- return '';
- }
-
- function normalizeEmail(email, options) {
- options = merge(options, default_normalize_email_options);
- var raw_parts = email.split('@');
- var domain = raw_parts.pop();
- var user = raw_parts.join('@');
- var parts = [user, domain]; // The domain is always lowercased, as it's case-insensitive per RFC 1035
-
- parts[1] = parts[1].toLowerCase();
-
- if (parts[1] === 'gmail.com' || parts[1] === 'googlemail.com') {
- // Address is GMail
- if (options.gmail_remove_subaddress) {
- parts[0] = parts[0].split('+')[0];
- }
-
- if (options.gmail_remove_dots) {
- // this does not replace consecutive dots like example..email@gmail.com
- parts[0] = parts[0].replace(/\.+/g, dotsReplacer);
- }
-
- if (!parts[0].length) {
- return false;
- }
-
- if (options.all_lowercase || options.gmail_lowercase) {
- parts[0] = parts[0].toLowerCase();
- }
-
- parts[1] = options.gmail_convert_googlemaildotcom ? 'gmail.com' : parts[1];
- } else if (icloud_domains.indexOf(parts[1]) >= 0) {
- // Address is iCloud
- if (options.icloud_remove_subaddress) {
- parts[0] = parts[0].split('+')[0];
- }
-
- if (!parts[0].length) {
- return false;
- }
+ return true;
+}
+
+var default_normalize_email_options = {
+ // The following options apply to all email addresses
+ // Lowercases the local part of the email address.
+ // Please note this may violate RFC 5321 as per http://stackoverflow.com/a/9808332/192024).
+ // The domain is always lowercased, as per RFC 1035
+ all_lowercase: true,
+ // The following conversions are specific to GMail
+ // Lowercases the local part of the GMail address (known to be case-insensitive)
+ gmail_lowercase: true,
+ // Removes dots from the local part of the email address, as that's ignored by GMail
+ gmail_remove_dots: true,
+ // Removes the subaddress (e.g. "+foo") from the email address
+ gmail_remove_subaddress: true,
+ // Conversts the googlemail.com domain to gmail.com
+ gmail_convert_googlemaildotcom: true,
+ // The following conversions are specific to Outlook.com / Windows Live / Hotmail
+ // Lowercases the local part of the Outlook.com address (known to be case-insensitive)
+ outlookdotcom_lowercase: true,
+ // Removes the subaddress (e.g. "+foo") from the email address
+ outlookdotcom_remove_subaddress: true,
+ // The following conversions are specific to Yahoo
+ // Lowercases the local part of the Yahoo address (known to be case-insensitive)
+ yahoo_lowercase: true,
+ // Removes the subaddress (e.g. "-foo") from the email address
+ yahoo_remove_subaddress: true,
+ // The following conversions are specific to Yandex
+ // Lowercases the local part of the Yandex address (known to be case-insensitive)
+ yandex_lowercase: true,
+ // The following conversions are specific to iCloud
+ // Lowercases the local part of the iCloud address (known to be case-insensitive)
+ icloud_lowercase: true,
+ // Removes the subaddress (e.g. "+foo") from the email address
+ icloud_remove_subaddress: true
+}; // List of domains used by iCloud
+
+var icloud_domains = ['icloud.com', 'me.com']; // List of domains used by Outlook.com and its predecessors
+// This list is likely incomplete.
+// Partial reference:
+// https://blogs.office.com/2013/04/17/outlook-com-gets-two-step-verification-sign-in-by-alias-and-new-international-domains/
+
+var outlookdotcom_domains = ['hotmail.at', 'hotmail.be', 'hotmail.ca', 'hotmail.cl', 'hotmail.co.il', 'hotmail.co.nz', 'hotmail.co.th', 'hotmail.co.uk', 'hotmail.com', 'hotmail.com.ar', 'hotmail.com.au', 'hotmail.com.br', 'hotmail.com.gr', 'hotmail.com.mx', 'hotmail.com.pe', 'hotmail.com.tr', 'hotmail.com.vn', 'hotmail.cz', 'hotmail.de', 'hotmail.dk', 'hotmail.es', 'hotmail.fr', 'hotmail.hu', 'hotmail.id', 'hotmail.ie', 'hotmail.in', 'hotmail.it', 'hotmail.jp', 'hotmail.kr', 'hotmail.lv', 'hotmail.my', 'hotmail.ph', 'hotmail.pt', 'hotmail.sa', 'hotmail.sg', 'hotmail.sk', 'live.be', 'live.co.uk', 'live.com', 'live.com.ar', 'live.com.mx', 'live.de', 'live.es', 'live.eu', 'live.fr', 'live.it', 'live.nl', 'msn.com', 'outlook.at', 'outlook.be', 'outlook.cl', 'outlook.co.il', 'outlook.co.nz', 'outlook.co.th', 'outlook.com', 'outlook.com.ar', 'outlook.com.au', 'outlook.com.br', 'outlook.com.gr', 'outlook.com.pe', 'outlook.com.tr', 'outlook.com.vn', 'outlook.cz', 'outlook.de', 'outlook.dk', 'outlook.es', 'outlook.fr', 'outlook.hu', 'outlook.id', 'outlook.ie', 'outlook.in', 'outlook.it', 'outlook.jp', 'outlook.kr', 'outlook.lv', 'outlook.my', 'outlook.ph', 'outlook.pt', 'outlook.sa', 'outlook.sg', 'outlook.sk', 'passport.com']; // List of domains used by Yahoo Mail
+// This list is likely incomplete
+
+var yahoo_domains = ['rocketmail.com', 'yahoo.ca', 'yahoo.co.uk', 'yahoo.com', 'yahoo.de', 'yahoo.fr', 'yahoo.in', 'yahoo.it', 'ymail.com']; // List of domains used by yandex.ru
+
+var yandex_domains = ['yandex.ru', 'yandex.ua', 'yandex.kz', 'yandex.com', 'yandex.by', 'ya.ru']; // replace single dots, but not multiple consecutive dots
+
+function dotsReplacer(match) {
+ if (match.length > 1) {
+ return match;
+ }
+
+ return '';
+}
+
+function normalizeEmail(email, options) {
+ options = merge(options, default_normalize_email_options);
+ var raw_parts = email.split('@');
+ var domain = raw_parts.pop();
+ var user = raw_parts.join('@');
+ var parts = [user, domain]; // The domain is always lowercased, as it's case-insensitive per RFC 1035
+
+ parts[1] = parts[1].toLowerCase();
+
+ if (parts[1] === 'gmail.com' || parts[1] === 'googlemail.com') {
+ // Address is GMail
+ if (options.gmail_remove_subaddress) {
+ parts[0] = parts[0].split('+')[0];
+ }
+
+ if (options.gmail_remove_dots) {
+ // this does not replace consecutive dots like example..email@gmail.com
+ parts[0] = parts[0].replace(/\.+/g, dotsReplacer);
+ }
+
+ if (!parts[0].length) {
+ return false;
+ }
- if (options.all_lowercase || options.icloud_lowercase) {
- parts[0] = parts[0].toLowerCase();
- }
- } else if (outlookdotcom_domains.indexOf(parts[1]) >= 0) {
- // Address is Outlook.com
- if (options.outlookdotcom_remove_subaddress) {
- parts[0] = parts[0].split('+')[0];
- }
+ if (options.all_lowercase || options.gmail_lowercase) {
+ parts[0] = parts[0].toLowerCase();
+ }
- if (!parts[0].length) {
- return false;
- }
+ parts[1] = options.gmail_convert_googlemaildotcom ? 'gmail.com' : parts[1];
+ } else if (icloud_domains.indexOf(parts[1]) >= 0) {
+ // Address is iCloud
+ if (options.icloud_remove_subaddress) {
+ parts[0] = parts[0].split('+')[0];
+ }
- if (options.all_lowercase || options.outlookdotcom_lowercase) {
- parts[0] = parts[0].toLowerCase();
- }
- } else if (yahoo_domains.indexOf(parts[1]) >= 0) {
- // Address is Yahoo
- if (options.yahoo_remove_subaddress) {
- var components = parts[0].split('-');
- parts[0] = components.length > 1 ? components.slice(0, -1).join('-') : components[0];
- }
+ if (!parts[0].length) {
+ return false;
+ }
- if (!parts[0].length) {
- return false;
- }
+ if (options.all_lowercase || options.icloud_lowercase) {
+ parts[0] = parts[0].toLowerCase();
+ }
+ } else if (outlookdotcom_domains.indexOf(parts[1]) >= 0) {
+ // Address is Outlook.com
+ if (options.outlookdotcom_remove_subaddress) {
+ parts[0] = parts[0].split('+')[0];
+ }
- if (options.all_lowercase || options.yahoo_lowercase) {
- parts[0] = parts[0].toLowerCase();
- }
- } else if (yandex_domains.indexOf(parts[1]) >= 0) {
- if (options.all_lowercase || options.yandex_lowercase) {
- parts[0] = parts[0].toLowerCase();
- }
+ if (!parts[0].length) {
+ return false;
+ }
- parts[1] = 'yandex.ru'; // all yandex domains are equal, 1st preferred
- } else if (options.all_lowercase) {
- // Any other address
+ if (options.all_lowercase || options.outlookdotcom_lowercase) {
parts[0] = parts[0].toLowerCase();
}
+ } else if (yahoo_domains.indexOf(parts[1]) >= 0) {
+ // Address is Yahoo
+ if (options.yahoo_remove_subaddress) {
+ var components = parts[0].split('-');
+ parts[0] = components.length > 1 ? components.slice(0, -1).join('-') : components[0];
+ }
- return parts.join('@');
- }
-
- var charsetRegex = /^[^\s-_](?!.*?[-_]{2,})([a-z0-9-\\]{1,})[^\s]*[^-_\s]$/;
- function isSlug(str) {
- assertString(str);
- return charsetRegex.test(str);
- }
-
- var version = '13.1.17';
- var validator = {
- version: version,
- toDate: toDate,
- toFloat: toFloat,
- toInt: toInt,
- toBoolean: toBoolean,
- equals: equals,
- contains: contains,
- matches: matches,
- isEmail: isEmail,
- isURL: isURL,
- isMACAddress: isMACAddress,
- isIP: isIP,
- isIPRange: isIPRange,
- isFQDN: isFQDN,
- isBoolean: isBoolean,
- isIBAN: isIBAN,
- isBIC: isBIC,
- isAlpha: isAlpha,
- isAlphaLocales: locales$1,
- isAlphanumeric: isAlphanumeric,
- isAlphanumericLocales: locales$2,
- isNumeric: isNumeric,
- isPassportNumber: isPassportNumber,
- isPort: isPort,
- isLowercase: isLowercase,
- isUppercase: isUppercase,
- isAscii: isAscii,
- isFullWidth: isFullWidth,
- isHalfWidth: isHalfWidth,
- isVariableWidth: isVariableWidth,
- isMultibyte: isMultibyte,
- isSemVer: isSemVer,
- isSurrogatePair: isSurrogatePair,
- isInt: isInt,
- isIMEI: isIMEI,
- isFloat: isFloat,
- isFloatLocales: locales,
- isDecimal: isDecimal,
- isHexadecimal: isHexadecimal,
- isOctal: isOctal,
- isDivisibleBy: isDivisibleBy,
- isHexColor: isHexColor,
- isRgbColor: isRgbColor,
- isHSL: isHSL,
- isISRC: isISRC,
- isMD5: isMD5,
- isHash: isHash,
- isJWT: isJWT,
- isJSON: isJSON,
- isEmpty: isEmpty,
- isLength: isLength,
- isLocale: isLocale,
- isByteLength: isByteLength,
- isUUID: isUUID,
- isMongoId: isMongoId,
- isAfter: isAfter,
- isBefore: isBefore,
- isIn: isIn,
- isCreditCard: isCreditCard,
- isIdentityCard: isIdentityCard,
- isEAN: isEAN,
- isISIN: isISIN,
- isISBN: isISBN,
- isISSN: isISSN,
- isMobilePhone: isMobilePhone,
- isMobilePhoneLocales: locales$3,
- isPostalCode: isPostalCode,
- isPostalCodeLocales: locales$4,
- isEthereumAddress: isEthereumAddress,
- isCurrency: isCurrency,
- isBtcAddress: isBtcAddress,
- isISO8601: isISO8601,
- isRFC3339: isRFC3339,
- isISO31661Alpha2: isISO31661Alpha2,
- isISO31661Alpha3: isISO31661Alpha3,
- isBase32: isBase32,
- isBase64: isBase64,
- isDataURI: isDataURI,
- isMagnetURI: isMagnetURI,
- isMimeType: isMimeType,
- isLatLong: isLatLong,
- ltrim: ltrim,
- rtrim: rtrim,
- trim: trim,
- escape: escape,
- unescape: unescape,
- stripLow: stripLow,
- whitelist: whitelist,
- blacklist: blacklist$1,
- isWhitelisted: isWhitelisted,
- normalizeEmail: normalizeEmail,
- toString: toString,
- isSlug: isSlug,
- isTaxID: isTaxID,
- isDate: isDate
- };
+ if (!parts[0].length) {
+ return false;
+ }
- return validator;
+ if (options.all_lowercase || options.yahoo_lowercase) {
+ parts[0] = parts[0].toLowerCase();
+ }
+ } else if (yandex_domains.indexOf(parts[1]) >= 0) {
+ if (options.all_lowercase || options.yandex_lowercase) {
+ parts[0] = parts[0].toLowerCase();
+ }
-})));
\ No newline at end of file
+ parts[1] = 'yandex.ru'; // all yandex domains are equal, 1st preferred
+ } else if (options.all_lowercase) {
+ // Any other address
+ parts[0] = parts[0].toLowerCase();
+ }
+
+ return parts.join('@');
+}
+
+var charsetRegex = /^[^\s-_](?!.*?[-_]{2,})([a-z0-9-\\]{1,})[^\s]*[^-_\s]$/;
+function isSlug(str) {
+ assertString(str);
+ return charsetRegex.test(str);
+}
+
+var version = '13.1.17';
+var validator = {
+ version: version,
+ toDate: toDate,
+ toFloat: toFloat,
+ toInt: toInt,
+ toBoolean: toBoolean,
+ equals: equals,
+ contains: contains,
+ matches: matches,
+ isEmail: isEmail,
+ isURL: isURL,
+ isMACAddress: isMACAddress,
+ isIP: isIP,
+ isIPRange: isIPRange,
+ isFQDN: isFQDN,
+ isBoolean: isBoolean,
+ isIBAN: isIBAN,
+ isBIC: isBIC,
+ isAlpha: isAlpha,
+ isAlphaLocales: locales$1,
+ isAlphanumeric: isAlphanumeric,
+ isAlphanumericLocales: locales$2,
+ isNumeric: isNumeric,
+ isPassportNumber: isPassportNumber,
+ isPort: isPort,
+ isLowercase: isLowercase,
+ isUppercase: isUppercase,
+ isAscii: isAscii,
+ isFullWidth: isFullWidth,
+ isHalfWidth: isHalfWidth,
+ isVariableWidth: isVariableWidth,
+ isMultibyte: isMultibyte,
+ isSemVer: isSemVer,
+ isSurrogatePair: isSurrogatePair,
+ isInt: isInt,
+ isIMEI: isIMEI,
+ isFloat: isFloat,
+ isFloatLocales: locales,
+ isDecimal: isDecimal,
+ isHexadecimal: isHexadecimal,
+ isOctal: isOctal,
+ isDivisibleBy: isDivisibleBy,
+ isHexColor: isHexColor,
+ isRgbColor: isRgbColor,
+ isHSL: isHSL,
+ isISRC: isISRC,
+ isMD5: isMD5,
+ isHash: isHash,
+ isJWT: isJWT,
+ isJSON: isJSON,
+ isEmpty: isEmpty,
+ isLength: isLength,
+ isLocale: isLocale,
+ isByteLength: isByteLength,
+ isUUID: isUUID,
+ isMongoId: isMongoId,
+ isAfter: isAfter,
+ isBefore: isBefore,
+ isIn: isIn,
+ isCreditCard: isCreditCard,
+ isIdentityCard: isIdentityCard,
+ isEAN: isEAN,
+ isISIN: isISIN,
+ isISBN: isISBN,
+ isISSN: isISSN,
+ isMobilePhone: isMobilePhone,
+ isMobilePhoneLocales: locales$3,
+ isPostalCode: isPostalCode,
+ isPostalCodeLocales: locales$4,
+ isEthereumAddress: isEthereumAddress,
+ isCurrency: isCurrency,
+ isBtcAddress: isBtcAddress,
+ isISO8601: isISO8601,
+ isRFC3339: isRFC3339,
+ isISO31661Alpha2: isISO31661Alpha2,
+ isISO31661Alpha3: isISO31661Alpha3,
+ isBase32: isBase32,
+ isBase58: isBase58,
+ isBase64: isBase64,
+ isDataURI: isDataURI,
+ isMagnetURI: isMagnetURI,
+ isMimeType: isMimeType,
+ isLatLong: isLatLong,
+ ltrim: ltrim,
+ rtrim: rtrim,
+ trim: trim,
+ escape: escape,
+ unescape: unescape,
+ stripLow: stripLow,
+ whitelist: whitelist,
+ blacklist: blacklist$1,
+ isWhitelisted: isWhitelisted,
+ normalizeEmail: normalizeEmail,
+ toString: toString,
+ isSlug: isSlug,
+ isTaxID: isTaxID,
+ isDate: isDate
+};
+
+return validator;
+
+})));
diff --git a/validator.min.js b/validator.min.js
index deac93a54..279b023dc 100644
--- a/validator.min.js
+++ b/validator.min.js
@@ -20,4 +20,4 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-!function (t, e) { "object" == typeof exports && "undefined" != typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define(e) : t.validator = e() }(this, function () { "use strict"; function i(t) { return (i = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (t) { return typeof t } : function (t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) } function d(t, e) { return function (t) { if (Array.isArray(t)) return t }(t) || function (t, e) { if ("undefined" == typeof Symbol || !(Symbol.iterator in Object(t))) return; var r = [], n = !0, i = !1, o = void 0; try { for (var a, s = t[Symbol.iterator](); !(n = (a = s.next()).done) && (r.push(a.value), !e || r.length !== e); n = !0); } catch (t) { i = !0, o = t } finally { try { n || null == s.return || s.return() } finally { if (i) throw o } } return r }(t, e) || l(t, e) || function () { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.") }() } function r(t) { return function (t) { if (Array.isArray(t)) return n(t) }(t) || function (t) { if ("undefined" != typeof Symbol && Symbol.iterator in Object(t)) return Array.from(t) }(t) || l(t) || function () { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.") }() } function l(t, e) { if (t) { if ("string" == typeof t) return n(t, e); var r = Object.prototype.toString.call(t).slice(8, -1); return "Object" === r && t.constructor && (r = t.constructor.name), "Map" === r || "Set" === r ? Array.from(t) : "Arguments" === r || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r) ? n(t, e) : void 0 } } function n(t, e) { (null == e || e > t.length) && (e = t.length); for (var r = 0, n = new Array(e); r < e; r++)n[r] = t[r]; return n } function c(t) { if (!("string" == typeof t || t instanceof String)) { var e = null === t ? "null" : "object" === (e = i(t)) && t.constructor && t.constructor.hasOwnProperty("name") ? t.constructor.name : "a ".concat(e); throw new TypeError("Expected string but received ".concat(e, ".")) } } function o(t) { return c(t), t = Date.parse(t), isNaN(t) ? null : new Date(t) } for (var t, a = { "en-US": /^[A-Z]+$/i, "az-AZ": /^[A-VXYZÇƏĞİıÖŞÜ]+$/i, "bg-BG": /^[А-Я]+$/i, "cs-CZ": /^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]+$/i, "da-DK": /^[A-ZÆØÅ]+$/i, "de-DE": /^[A-ZÄÖÜß]+$/i, "el-GR": /^[Α-ώ]+$/i, "es-ES": /^[A-ZÁÉÍÑÓÚÜ]+$/i, "fr-FR": /^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]+$/i, "it-IT": /^[A-ZÀÉÈÌÎÓÒÙ]+$/i, "nb-NO": /^[A-ZÆØÅ]+$/i, "nl-NL": /^[A-ZÁÉËÏÓÖÜÚ]+$/i, "nn-NO": /^[A-ZÆØÅ]+$/i, "hu-HU": /^[A-ZÁÉÍÓÖŐÚÜŰ]+$/i, "pl-PL": /^[A-ZĄĆĘŚŁŃÓŻŹ]+$/i, "pt-PT": /^[A-ZÃÁÀÂÄÇÉÊËÍÏÕÓÔÖÚÜ]+$/i, "ru-RU": /^[А-ЯЁ]+$/i, "sl-SI": /^[A-ZČĆĐŠŽ]+$/i, "sk-SK": /^[A-ZÁČĎÉÍŇÓŠŤÚÝŽĹŔĽÄÔ]+$/i, "sr-RS@latin": /^[A-ZČĆŽŠĐ]+$/i, "sr-RS": /^[А-ЯЂЈЉЊЋЏ]+$/i, "sv-SE": /^[A-ZÅÄÖ]+$/i, "tr-TR": /^[A-ZÇĞİıÖŞÜ]+$/i, "uk-UA": /^[А-ЩЬЮЯЄIЇҐі]+$/i, "vi-VN": /^[A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i, "ku-IQ": /^[ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i, ar: /^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/, he: /^[א-ת]+$/, fa: /^['آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی']+$/i }, s = { "en-US": /^[0-9A-Z]+$/i, "az-AZ": /^[0-9A-VXYZÇƏĞİıÖŞÜ]+$/i, "bg-BG": /^[0-9А-Я]+$/i, "cs-CZ": /^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]+$/i, "da-DK": /^[0-9A-ZÆØÅ]+$/i, "de-DE": /^[0-9A-ZÄÖÜß]+$/i, "el-GR": /^[0-9Α-ω]+$/i, "es-ES": /^[0-9A-ZÁÉÍÑÓÚÜ]+$/i, "fr-FR": /^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]+$/i, "it-IT": /^[0-9A-ZÀÉÈÌÎÓÒÙ]+$/i, "hu-HU": /^[0-9A-ZÁÉÍÓÖŐÚÜŰ]+$/i, "nb-NO": /^[0-9A-ZÆØÅ]+$/i, "nl-NL": /^[0-9A-ZÁÉËÏÓÖÜÚ]+$/i, "nn-NO": /^[0-9A-ZÆØÅ]+$/i, "pl-PL": /^[0-9A-ZĄĆĘŚŁŃÓŻŹ]+$/i, "pt-PT": /^[0-9A-ZÃÁÀÂÄÇÉÊËÍÏÕÓÔÖÚÜ]+$/i, "ru-RU": /^[0-9А-ЯЁ]+$/i, "sl-SI": /^[0-9A-ZČĆĐŠŽ]+$/i, "sk-SK": /^[0-9A-ZÁČĎÉÍŇÓŠŤÚÝŽĹŔĽÄÔ]+$/i, "sr-RS@latin": /^[0-9A-ZČĆŽŠĐ]+$/i, "sr-RS": /^[0-9А-ЯЂЈЉЊЋЏ]+$/i, "sv-SE": /^[0-9A-ZÅÄÖ]+$/i, "tr-TR": /^[0-9A-ZÇĞİıÖŞÜ]+$/i, "uk-UA": /^[0-9А-ЩЬЮЯЄIЇҐі]+$/i, "ku-IQ": /^[٠١٢٣٤٥٦٧٨٩0-9ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i, "vi-VN": /^[0-9A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i, ar: /^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/, he: /^[0-9א-ת]+$/, fa: /^['0-9آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی۱۲۳۴۵۶۷۸۹۰']+$/i }, u = { "en-US": ".", ar: "٫", fa: "٫" }, e = ["AU", "GB", "HK", "IN", "NZ", "ZA", "ZM"], f = 0; f < e.length; f++)t = "en-".concat(e[f]), a[t] = a["en-US"], s[t] = s["en-US"], u[t] = u["en-US"]; for (var $, A = ["AE", "BH", "DZ", "EG", "IQ", "JO", "KW", "LB", "LY", "MA", "QM", "QA", "SA", "SD", "SY", "TN", "YE"], p = 0; p < A.length; p++)$ = "ar-".concat(A[p]), a[$] = a.ar, s[$] = s.ar, u[$] = u.ar; for (var g, h = ["IR", "AF"], m = 0; m < h.length; m++)g = "fa-".concat(h[m]), a[g] = a.fa, s[g] = s.fa, u[g] = u.fa; for (var v = ["ar-EG", "ar-LB", "ar-LY"], Z = ["bg-BG", "cs-CZ", "da-DK", "de-DE", "el-GR", "en-ZM", "es-ES", "fr-FR", "it-IT", "ku-IQ", "hu-HU", "nb-NO", "nn-NO", "nl-NL", "pl-PL", "pt-PT", "ru-RU", "sl-SI", "sr-RS@latin", "sr-RS", "sv-SE", "tr-TR", "uk-UA", "vi-VN"], S = 0; S < v.length; S++)u[v[S]] = u["en-US"]; for (var _ = 0; _ < Z.length; _++)u[Z[_]] = ","; function F(t, e) { c(t), e = e || {}; var r = new RegExp("^(?:[-+])?(?:[0-9]+)?(?:\\".concat(e.locale ? u[e.locale] : ".", "[0-9]*)?(?:[eE][\\+\\-]?(?:[0-9]+))?$")); if ("" === t || "." === t || "-" === t || "+" === t) return !1; var n = parseFloat(t.replace(",", ".")); return r.test(t) && (!e.hasOwnProperty("min") || n >= e.min) && (!e.hasOwnProperty("max") || n <= e.max) && (!e.hasOwnProperty("lt") || n < e.lt) && (!e.hasOwnProperty("gt") || n > e.gt) } a["pt-BR"] = a["pt-PT"], s["pt-BR"] = s["pt-PT"], u["pt-BR"] = u["pt-PT"], a["pl-Pl"] = a["pl-PL"], s["pl-Pl"] = s["pl-PL"], u["pl-Pl"] = u["pl-PL"]; var E = Object.keys(u); function R(t) { return F(t) ? parseFloat(t) : NaN } function I(t) { return "object" === i(t) && null !== t ? t = "function" == typeof t.toString ? t.toString() : "[object Object]" : (null == t || isNaN(t) && !t.length) && (t = ""), String(t) } function C(t, e) { var r, n = 0 < arguments.length && void 0 !== t ? t : {}, i = 1 < arguments.length ? e : void 0; for (r in i) void 0 === n[r] && (n[r] = i[r]); return n } var M = { ignoreCase: !1 }; function b(t, e) { var r; c(t), e = "object" === i(e) ? (r = e.min || 0, e.max) : (r = e, arguments[2]); t = encodeURI(t).split(/%..|./).length - 1; return r <= t && (void 0 === e || t <= e) } var L = { require_tld: !0, allow_underscores: !1, allow_trailing_dot: !1 }; function N(t, e) { c(t), (e = C(e, L)).allow_trailing_dot && "." === t[t.length - 1] && (t = t.substring(0, t.length - 1)); for (var r = t.split("."), n = 0; n < r.length; n++)if (63 < r[n].length) return !1; if (e.require_tld) { t = r.pop(); if (!r.length || !/^([a-z\u00a1-\uffff]{2,}|xn[a-z0-9-]{2,})$/i.test(t)) return !1; if (/[\s\u2002-\u200B\u202F\u205F\u3000\uFEFF\uDB40\uDC20\u00A9\uFFFD]/.test(t)) return !1 } for (var i, o = 0; o < r.length; o++) { if (i = r[o], e.allow_underscores && (i = i.replace(/_/g, "")), !/^[a-z\u00a1-\uffff0-9-]+$/i.test(i)) return !1; if (/[\uff01-\uff5e]/.test(i)) return !1; if ("-" === i[0] || "-" === i[i.length - 1]) return !1 } return !0 } var y = /^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/, T = /^[0-9A-F]{1,4}$/i; function w(t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : ""; if (c(t), !(e = String(e))) return w(t, 4) || w(t, 6); if ("4" === e) return !!y.test(t) && t.split(".").sort(function (t, e) { return t - e })[3] <= 255; if ("6" !== e) return !1; e = [t]; if (t.includes("%")) { if (2 !== (e = t.split("%")).length) return !1; if (!e[0].includes(":")) return !1; if ("" === e[1]) return !1 } var r = e[0].split(":"), n = !1, i = w(r[r.length - 1], 4), e = i ? 7 : 8; if (r.length > e) return !1; if ("::" === t) return !0; "::" === t.substr(0, 2) ? (r.shift(), r.shift(), n = !0) : "::" === t.substr(t.length - 2) && (r.pop(), r.pop(), n = !0); for (var o = 0; o < r.length; ++o)if ("" === r[o] && 0 < o && o < r.length - 1) { if (n) return !1; n = !0 } else if (!(i && o === r.length - 1 || T.test(r[o]))) return !1; return n ? 1 <= r.length : r.length === e } var x = { allow_display_name: !1, require_display_name: !1, allow_utf8_local_part: !0, require_tld: !0, ignore_max_length: !1 }, B = /^([^\x00-\x1F\x7F-\x9F\cX]+)<(.+)>$/i, D = /^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~]+$/i, O = /^[a-z\d]+$/, G = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f]))*$/i, U = /^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+$/i, P = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))*$/i; var K = { protocols: ["http", "https", "ftp"], require_tld: !0, require_protocol: !1, require_host: !0, require_port: !1, require_valid_protocol: !0, allow_underscores: !1, allow_trailing_dot: !1, allow_protocol_relative_urls: !1, validate_length: !0 }, H = /^\[([^\]]+)\](?::([0-9]+))?$/; function k(t, e) { for (var r, n = 0; n < e.length; n++) { var i = e[n]; if (t === i || (r = i, "[object RegExp]" === Object.prototype.toString.call(r) && i.test(t))) return 1 } } var z = /^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$/, V = /^([0-9a-fA-F]){12}$/, W = /^([0-9a-fA-F][0-9a-fA-F]-){5}([0-9a-fA-F][0-9a-fA-F])$/, Y = /^([0-9a-fA-F][0-9a-fA-F]\s){5}([0-9a-fA-F][0-9a-fA-F])$/, j = /^([0-9a-fA-F]{4}).([0-9a-fA-F]{4}).([0-9a-fA-F]{4})$/; var J = /^\d{1,2}$/; var X = { format: "YYYY/MM/DD", delimiters: ["/", "-"], strictMode: !1 }; var q = /^[A-z]{2,4}([_-]([A-z]{4}|[\d]{3}))?([_-]([A-z]{2}|[\d]{3}))?$/; var Q = Object.keys(a); var tt = Object.keys(s), et = /^[0-9]+$/; var rt = { AM: /^[A-Z]{2}\d{7}$/, AR: /^[A-Z]{3}\d{6}$/, AT: /^[A-Z]\d{7}$/, AU: /^[A-Z]\d{7}$/, BE: /^[A-Z]{2}\d{6}$/, BG: /^\d{9}$/, CA: /^[A-Z]{2}\d{6}$/, CH: /^[A-Z]\d{7}$/, CN: /^[GE]\d{8}$/, CY: /^[A-Z](\d{6}|\d{8})$/, CZ: /^\d{8}$/, DE: /^[CFGHJKLMNPRTVWXYZ0-9]{9}$/, DK: /^\d{9}$/, DZ: /^\d{9}$/, EE: /^([A-Z]\d{7}|[A-Z]{2}\d{7})$/, ES: /^[A-Z0-9]{2}([A-Z0-9]?)\d{6}$/, FI: /^[A-Z]{2}\d{7}$/, FR: /^\d{2}[A-Z]{2}\d{5}$/, GB: /^\d{9}$/, GR: /^[A-Z]{2}\d{7}$/, HR: /^\d{9}$/, HU: /^[A-Z]{2}(\d{6}|\d{7})$/, IE: /^[A-Z0-9]{2}\d{7}$/, IN: /^[A-Z]{1}-?\d{7}$/, IS: /^(A)\d{7}$/, IT: /^[A-Z0-9]{2}\d{7}$/, JP: /^[A-Z]{2}\d{7}$/, KR: /^[MS]\d{8}$/, LT: /^[A-Z0-9]{8}$/, LU: /^[A-Z0-9]{8}$/, LV: /^[A-Z0-9]{2}\d{7}$/, MT: /^\d{7}$/, NL: /^[A-Z]{2}[A-Z0-9]{6}\d$/, PO: /^[A-Z]{2}\d{7}$/, PT: /^[A-Z]\d{6}$/, RO: /^\d{8,9}$/, SE: /^\d{8}$/, SL: /^(P)[A-Z]\d{7}$/, SK: /^[0-9A-Z]\d{7}$/, TR: /^[A-Z]\d{8}$/, UA: /^[A-Z]{2}\d{6}$/, US: /^\d{9}$/ }; var nt = /^(?:[-+]?(?:0|[1-9][0-9]*))$/, it = /^[-+]?[0-9]+$/; function ot(t, e) { c(t); var r = (e = e || {}).hasOwnProperty("allow_leading_zeroes") && !e.allow_leading_zeroes ? nt : it, n = !e.hasOwnProperty("min") || t >= e.min, i = !e.hasOwnProperty("max") || t <= e.max, o = !e.hasOwnProperty("lt") || t < e.lt, e = !e.hasOwnProperty("gt") || t > e.gt; return r.test(t) && n && i && o && e } var at = /^[0-9]{15}$/, st = /^\d{2}-\d{6}-\d{6}-\d{1}$/; var lt = /^[\x00-\x7F]+$/; var ut = /[^\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/; var dt = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/; var ct = /[^\x00-\x7F]/; var ft, $t, At = ($t = "i", ft = (ft = ["^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)", "(?:-((?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*))*))", "?(?:\\+([0-9a-z-]+(?:\\.[0-9a-z-]+)*))?$"]).join(""), new RegExp(ft, $t)); var pt = /[\uD800-\uDBFF][\uDC00-\uDFFF]/; function gt(t, e) { return t.some(function (t) { return e === t }) } var ht = { force_decimal: !1, decimal_digits: "1,", locale: "en-US" }, mt = ["", "-", "+"]; var vt = /^(0x|0h)?[0-9A-F]+$/i; function Zt(t) { return c(t), vt.test(t) } var St = /^(0o)?[0-7]+$/i; var _t = /^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i; var Ft = /^rgb\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){2}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\)$/, Et = /^rgba\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)$/, Rt = /^rgb\((([0-9]%|[1-9][0-9]%|100%),){2}([0-9]%|[1-9][0-9]%|100%)\)/, It = /^rgba\((([0-9]%|[1-9][0-9]%|100%),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)/; var Ct = /^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s*)(\s*,\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(,\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i, Mt = /^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s)(\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(\/\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i; var bt = /^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/; var Lt = { AD: /^(AD[0-9]{2})\d{8}[A-Z0-9]{12}$/, AE: /^(AE[0-9]{2})\d{3}\d{16}$/, AL: /^(AL[0-9]{2})\d{8}[A-Z0-9]{16}$/, AT: /^(AT[0-9]{2})\d{16}$/, AZ: /^(AZ[0-9]{2})[A-Z0-9]{4}\d{20}$/, BA: /^(BA[0-9]{2})\d{16}$/, BE: /^(BE[0-9]{2})\d{12}$/, BG: /^(BG[0-9]{2})[A-Z]{4}\d{6}[A-Z0-9]{8}$/, BH: /^(BH[0-9]{2})[A-Z]{4}[A-Z0-9]{14}$/, BR: /^(BR[0-9]{2})\d{23}[A-Z]{1}[A-Z0-9]{1}$/, BY: /^(BY[0-9]{2})[A-Z0-9]{4}\d{20}$/, CH: /^(CH[0-9]{2})\d{5}[A-Z0-9]{12}$/, CR: /^(CR[0-9]{2})\d{18}$/, CY: /^(CY[0-9]{2})\d{8}[A-Z0-9]{16}$/, CZ: /^(CZ[0-9]{2})\d{20}$/, DE: /^(DE[0-9]{2})\d{18}$/, DK: /^(DK[0-9]{2})\d{14}$/, DO: /^(DO[0-9]{2})[A-Z]{4}\d{20}$/, EE: /^(EE[0-9]{2})\d{16}$/, EG: /^(EG[0-9]{2})\d{25}$/, ES: /^(ES[0-9]{2})\d{20}$/, FI: /^(FI[0-9]{2})\d{14}$/, FO: /^(FO[0-9]{2})\d{14}$/, FR: /^(FR[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/, GB: /^(GB[0-9]{2})[A-Z]{4}\d{14}$/, GE: /^(GE[0-9]{2})[A-Z0-9]{2}\d{16}$/, GI: /^(GI[0-9]{2})[A-Z]{4}[A-Z0-9]{15}$/, GL: /^(GL[0-9]{2})\d{14}$/, GR: /^(GR[0-9]{2})\d{7}[A-Z0-9]{16}$/, GT: /^(GT[0-9]{2})[A-Z0-9]{4}[A-Z0-9]{20}$/, HR: /^(HR[0-9]{2})\d{17}$/, HU: /^(HU[0-9]{2})\d{24}$/, IE: /^(IE[0-9]{2})[A-Z0-9]{4}\d{14}$/, IL: /^(IL[0-9]{2})\d{19}$/, IQ: /^(IQ[0-9]{2})[A-Z]{4}\d{15}$/, IR: /^(IR[0-9]{2})0\d{2}0\d{18}$/, IS: /^(IS[0-9]{2})\d{22}$/, IT: /^(IT[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/, JO: /^(JO[0-9]{2})[A-Z]{4}\d{22}$/, KW: /^(KW[0-9]{2})[A-Z]{4}[A-Z0-9]{22}$/, KZ: /^(KZ[0-9]{2})\d{3}[A-Z0-9]{13}$/, LB: /^(LB[0-9]{2})\d{4}[A-Z0-9]{20}$/, LC: /^(LC[0-9]{2})[A-Z]{4}[A-Z0-9]{24}$/, LI: /^(LI[0-9]{2})\d{5}[A-Z0-9]{12}$/, LT: /^(LT[0-9]{2})\d{16}$/, LU: /^(LU[0-9]{2})\d{3}[A-Z0-9]{13}$/, LV: /^(LV[0-9]{2})[A-Z]{4}[A-Z0-9]{13}$/, MC: /^(MC[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/, MD: /^(MD[0-9]{2})[A-Z0-9]{20}$/, ME: /^(ME[0-9]{2})\d{18}$/, MK: /^(MK[0-9]{2})\d{3}[A-Z0-9]{10}\d{2}$/, MR: /^(MR[0-9]{2})\d{23}$/, MT: /^(MT[0-9]{2})[A-Z]{4}\d{5}[A-Z0-9]{18}$/, MU: /^(MU[0-9]{2})[A-Z]{4}\d{19}[A-Z]{3}$/, NL: /^(NL[0-9]{2})[A-Z]{4}\d{10}$/, NO: /^(NO[0-9]{2})\d{11}$/, PK: /^(PK[0-9]{2})[A-Z0-9]{4}\d{16}$/, PL: /^(PL[0-9]{2})\d{24}$/, PS: /^(PS[0-9]{2})[A-Z0-9]{4}\d{21}$/, PT: /^(PT[0-9]{2})\d{21}$/, QA: /^(QA[0-9]{2})[A-Z]{4}[A-Z0-9]{21}$/, RO: /^(RO[0-9]{2})[A-Z]{4}[A-Z0-9]{16}$/, RS: /^(RS[0-9]{2})\d{18}$/, SA: /^(SA[0-9]{2})\d{2}[A-Z0-9]{18}$/, SC: /^(SC[0-9]{2})[A-Z]{4}\d{20}[A-Z]{3}$/, SE: /^(SE[0-9]{2})\d{20}$/, SI: /^(SI[0-9]{2})\d{15}$/, SK: /^(SK[0-9]{2})\d{20}$/, SM: /^(SM[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/, SV: /^(SV[0-9]{2})[A-Z0-9]{4}\d{20}$/, TL: /^(TL[0-9]{2})\d{19}$/, TN: /^(TN[0-9]{2})\d{20}$/, TR: /^(TR[0-9]{2})\d{5}[A-Z0-9]{17}$/, UA: /^(UA[0-9]{2})\d{6}[A-Z0-9]{19}$/, VA: /^(VA[0-9]{2})\d{18}$/, VG: /^(VG[0-9]{2})[A-Z0-9]{4}\d{16}$/, XK: /^(XK[0-9]{2})\d{16}$/ }; var Nt = /^[A-z]{4}[A-z]{2}\w{2}(\w{3})?$/; var yt = /^[a-f0-9]{32}$/; var Tt = { md5: 32, md4: 32, sha1: 40, sha256: 64, sha384: 96, sha512: 128, ripemd128: 32, ripemd160: 40, tiger128: 32, tiger160: 40, tiger192: 48, crc32: 8, crc32b: 8 }; var wt = /[^A-Z0-9+\/=]/i, xt = /^[A-Z0-9_\-]*$/i, Bt = { urlSafe: !1 }; function Dt(t, e) { c(t), e = C(e, Bt); var r = t.length; if (e.urlSafe) return xt.test(t); if (r % 4 != 0 || wt.test(t)) return !1; e = t.indexOf("="); return -1 === e || e === r - 1 || e === r - 2 && "=" === t[r - 1] } var Ot = { allow_primitives: !1 }; var Gt = { ignore_whitespace: !1 }; var Ut = { 3: /^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i, 4: /^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i, 5: /^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i, all: /^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i }; var Pt = /^(?:4[0-9]{12}(?:[0-9]{3,6})?|5[1-5][0-9]{14}|(222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[01][0-9]|2720)[0-9]{12}|6(?:011|5[0-9][0-9])[0-9]{12,15}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11}|6[27][0-9]{14})$/; var Kt = { ES: function (t) { c(t); var e = { X: 0, Y: 1, Z: 2 }, r = t.trim().toUpperCase(); if (!/^[0-9X-Z][0-9]{7}[TRWAGMYFPDXBNJZSQVHLCKE]$/.test(r)) return !1; t = r.slice(0, -1).replace(/[X,Y,Z]/g, function (t) { return e[t] }); return r.endsWith(["T", "R", "W", "A", "G", "M", "Y", "F", "P", "D", "X", "B", "N", "J", "Z", "S", "Q", "V", "H", "L", "C", "K", "E"][t % 23]) }, IN: function (t) { var r = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 2, 3, 4, 0, 6, 7, 8, 9, 5], [2, 3, 4, 0, 1, 7, 8, 9, 5, 6], [3, 4, 0, 1, 2, 8, 9, 5, 6, 7], [4, 0, 1, 2, 3, 9, 5, 6, 7, 8], [5, 9, 8, 7, 6, 0, 4, 3, 2, 1], [6, 5, 9, 8, 7, 1, 0, 4, 3, 2], [7, 6, 5, 9, 8, 2, 1, 0, 4, 3], [8, 7, 6, 5, 9, 3, 2, 1, 0, 4], [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]], n = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 5, 7, 6, 2, 8, 3, 0, 9, 4], [5, 8, 0, 3, 7, 9, 6, 1, 4, 2], [8, 9, 1, 6, 0, 4, 3, 5, 2, 7], [9, 4, 5, 3, 1, 2, 6, 8, 7, 0], [4, 2, 8, 6, 5, 7, 3, 9, 0, 1], [2, 7, 9, 3, 8, 0, 6, 4, 1, 5], [7, 0, 4, 6, 9, 1, 3, 2, 5, 8]], t = t.trim(); if (!/^[1-9]\d{3}\s?\d{4}\s?\d{4}$/.test(t)) return !1; var i = 0; return t.replace(/\s/g, "").split("").map(Number).reverse().forEach(function (t, e) { i = r[i][n[e % 8][t]] }), 0 === i }, IT: function (t) { return 9 === t.length && ("CA00000AA" !== t && -1 < t.search(/C[A-Z][0-9]{5}[A-Z]{2}/i)) }, NO: function (t) { var e = t.trim(); if (isNaN(Number(e))) return !1; if (11 !== e.length) return !1; if ("00000000000" === e) return !1; var r = e.split("").map(Number), t = (11 - (3 * r[0] + 7 * r[1] + 6 * r[2] + +r[3] + 8 * r[4] + 9 * r[5] + 4 * r[6] + 5 * r[7] + 2 * r[8]) % 11) % 11, e = (11 - (5 * r[0] + 4 * r[1] + 3 * r[2] + 2 * r[3] + 7 * r[4] + 6 * r[5] + 5 * r[6] + 4 * r[7] + 3 * r[8] + 2 * t) % 11) % 11; return t === r[9] && e === r[10] }, "he-IL": function (t) { t = t.trim(); if (!/^\d{9}$/.test(t)) return !1; for (var e, r = t, n = 0, i = 0; i < r.length; i++)n += 9 < (e = Number(r[i]) * (i % 2 + 1)) ? e - 9 : e; return n % 10 == 0 }, "ar-TN": function (t) { t = t.trim(); return !!/^\d{8}$/.test(t) }, "zh-CN": function (t) { function n(t) { return r.includes(t) } function i(t) { var e = parseInt(t.substring(0, 4), 10), r = parseInt(t.substring(4, 6), 10), n = parseInt(t.substring(6), 10); return !((t = new Date(e, r - 1, n)) > new Date) && (t.getFullYear() === e && t.getMonth() === r - 1 && t.getDate() === n) } function o(t) { return function (t) { for (var e = t.substring(0, 17), r = 0, n = 0; n < 17; n++)r += parseInt(e.charAt(n), 10) * parseInt(a[n], 10); return s[r % 11] }(t) === t.charAt(17).toUpperCase() } var e, r = ["11", "12", "13", "14", "15", "21", "22", "23", "31", "32", "33", "34", "35", "36", "37", "41", "42", "43", "44", "45", "46", "50", "51", "52", "53", "54", "61", "62", "63", "64", "65", "71", "81", "82", "91"], a = ["7", "9", "10", "5", "8", "4", "2", "1", "6", "3", "7", "9", "10", "5", "8", "4", "2"], s = ["1", "0", "X", "9", "8", "7", "6", "5", "4", "3", "2"]; return !!/^\d{15}|(\d{17}(\d|x|X))$/.test(e = t) && (15 === e.length ? function (t) { var e = /^[1-9]\d{7}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}$/.test(t); if (!e) return !1; var r = t.substring(0, 2); if (!(e = n(r))) return !1; t = "19".concat(t.substring(6, 12)); return !!(e = i(t)) } : function (t) { var e = /^[1-9]\d{5}[1-9]\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}(\d|x|X)$/.test(t); if (!e) return !1; var r = t.substring(0, 2); if (!(e = n(r))) return !1; r = t.substring(6, 14); return !!(e = i(r)) && o(t) })(e) }, "zh-TW": function (t) { var n = { A: 10, B: 11, C: 12, D: 13, E: 14, F: 15, G: 16, H: 17, I: 34, J: 18, K: 19, L: 20, M: 21, N: 22, O: 35, P: 23, Q: 24, R: 25, S: 26, T: 27, U: 28, V: 29, W: 32, X: 30, Y: 31, Z: 33 }, t = t.trim().toUpperCase(); return !!/^[A-Z][0-9]{9}$/.test(t) && Array.from(t).reduce(function (t, e, r) { if (0 !== r) return 9 === r ? (10 - t % 10 - Number(e)) % 10 == 0 : t + Number(e) * (9 - r); e = n[e]; return e % 10 * 9 + Math.floor(e / 10) }, 0) } }; var Ht = 8, kt = /^(\d{8}|\d{13})$/; function zt(r) { var t = 10 - r.slice(0, -1).split("").map(function (t, e) { return Number(t) * (t = r.length, e = e, t === Ht ? e % 2 == 0 ? 3 : 1 : e % 2 == 0 ? 1 : 3) }).reduce(function (t, e) { return t + e }, 0) % 10; return t < 10 ? t : 0 } var Vt = /^[A-Z]{2}[0-9A-Z]{9}[0-9]$/; var Wt = /^(?:[0-9]{9}X|[0-9]{10})$/, Yt = /^(?:[0-9]{13})$/, jt = [1, 3]; var Jt = { andover: ["10", "12"], atlanta: ["60", "67"], austin: ["50", "53"], brookhaven: ["01", "02", "03", "04", "05", "06", "11", "13", "14", "16", "21", "22", "23", "25", "34", "51", "52", "54", "55", "56", "57", "58", "59", "65"], cincinnati: ["30", "32", "35", "36", "37", "38", "61"], fresno: ["15", "24"], internet: ["20", "26", "27", "45", "46", "47"], kansas: ["40", "44"], memphis: ["94", "95"], ogden: ["80", "90"], philadelphia: ["33", "39", "41", "42", "43", "46", "48", "62", "63", "64", "66", "68", "71", "72", "73", "74", "75", "76", "77", "81", "82", "83", "84", "85", "86", "87", "88", "91", "92", "93", "98", "99"], sba: ["31"] }; var Xt = { "en-US": /^\d{2}[- ]{0,1}\d{7}$/ }, qt = { "en-US": function (t) { return -1 !== function () { var t, e = []; for (t in Jt) Jt.hasOwnProperty(t) && e.push.apply(e, r(Jt[t])); return e }().indexOf(t.substr(0, 2)) } }; var Qt = { "am-AM": /^(\+?374|0)((10|[9|7][0-9])\d{6}$|[2-4]\d{7}$)/, "ar-AE": /^((\+?971)|0)?5[024568]\d{7}$/, "ar-BH": /^(\+?973)?(3|6)\d{7}$/, "ar-DZ": /^(\+?213|0)(5|6|7)\d{8}$/, "ar-EG": /^((\+?20)|0)?1[0125]\d{8}$/, "ar-IQ": /^(\+?964|0)?7[0-9]\d{8}$/, "ar-JO": /^(\+?962|0)?7[789]\d{7}$/, "ar-KW": /^(\+?965)[569]\d{7}$/, "ar-LY": /^((\+?218)|0)?(9[1-6]\d{7}|[1-8]\d{7,9})$/, "ar-SA": /^(!?(\+?966)|0)?5\d{8}$/, "ar-SY": /^(!?(\+?963)|0)?9\d{8}$/, "ar-TN": /^(\+?216)?[2459]\d{7}$/, "az-AZ": /^(\+994|0)(5[015]|7[07]|99)\d{7}$/, "bs-BA": /^((((\+|00)3876)|06))((([0-3]|[5-6])\d{6})|(4\d{7}))$/, "be-BY": /^(\+?375)?(24|25|29|33|44)\d{7}$/, "bg-BG": /^(\+?359|0)?8[789]\d{7}$/, "bn-BD": /^(\+?880|0)1[13456789][0-9]{8}$/, "cs-CZ": /^(\+?420)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/, "da-DK": /^(\+?45)?\s?\d{2}\s?\d{2}\s?\d{2}\s?\d{2}$/, "de-DE": /^(\+49)?0?[1|3]([0|5][0-45-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/, "de-AT": /^(\+43|0)\d{1,4}\d{3,12}$/, "de-CH": /^(\+41|0)(7[5-9])\d{1,7}$/, "el-GR": /^(\+?30|0)?(69\d{8})$/, "en-AU": /^(\+?61|0)4\d{8}$/, "en-GB": /^(\+?44|0)7\d{9}$/, "en-GG": /^(\+?44|0)1481\d{6}$/, "en-GH": /^(\+233|0)(20|50|24|54|27|57|26|56|23|28)\d{7}$/, "en-HK": /^(\+?852[-\s]?)?[456789]\d{3}[-\s]?\d{4}$/, "en-MO": /^(\+?853[-\s]?)?[6]\d{3}[-\s]?\d{4}$/, "en-IE": /^(\+?353|0)8[356789]\d{7}$/, "en-IN": /^(\+?91|0)?[6789]\d{9}$/, "en-KE": /^(\+?254|0)(7|1)\d{8}$/, "en-MT": /^(\+?356|0)?(99|79|77|21|27|22|25)[0-9]{6}$/, "en-MU": /^(\+?230|0)?\d{8}$/, "en-NG": /^(\+?234|0)?[789]\d{9}$/, "en-NZ": /^(\+?64|0)[28]\d{7,9}$/, "en-PK": /^((\+92)|(0092))-{0,1}\d{3}-{0,1}\d{7}$|^\d{11}$|^\d{4}-\d{7}$/, "en-PH": /^(09|\+639)\d{9}$/, "en-RW": /^(\+?250|0)?[7]\d{8}$/, "en-SG": /^(\+65)?[689]\d{7}$/, "en-SL": /^(?:0|94|\+94)?(7(0|1|2|5|6|7|8)( |-)?\d)\d{6}$/, "en-TZ": /^(\+?255|0)?[67]\d{8}$/, "en-UG": /^(\+?256|0)?[7]\d{8}$/, "en-US": /^((\+1|1)?( |-)?)?(\([2-9][0-9]{2}\)|[2-9][0-9]{2})( |-)?([2-9][0-9]{2}( |-)?[0-9]{4})$/, "en-ZA": /^(\+?27|0)\d{9}$/, "en-ZM": /^(\+?26)?09[567]\d{7}$/, "en-ZW": /^(\+263)[0-9]{9}$/, "es-AR": /^\+?549(11|[2368]\d)\d{8}$/, "es-CO": /^(\+?57)?([1-8]{1}|3[0-9]{2})?[2-9]{1}\d{6}$/, "es-CL": /^(\+?56|0)[2-9]\d{1}\d{7}$/, "es-CR": /^(\+506)?[2-8]\d{7}$/, "es-EC": /^(\+?593|0)([2-7]|9[2-9])\d{7}$/, "es-ES": /^(\+?34)?[6|7]\d{8}$/, "es-MX": /^(\+?52)?(1|01)?\d{10,11}$/, "es-PA": /^(\+?507)\d{7,8}$/, "es-PY": /^(\+?595|0)9[9876]\d{7}$/, "es-UY": /^(\+598|0)9[1-9][\d]{6}$/, "et-EE": /^(\+?372)?\s?(5|8[1-4])\s?([0-9]\s?){6,7}$/, "fa-IR": /^(\+?98[\-\s]?|0)9[0-39]\d[\-\s]?\d{3}[\-\s]?\d{4}$/, "fi-FI": /^(\+?358|0)\s?(4(0|1|2|4|5|6)?|50)\s?(\d\s?){4,8}\d$/, "fj-FJ": /^(\+?679)?\s?\d{3}\s?\d{4}$/, "fo-FO": /^(\+?298)?\s?\d{2}\s?\d{2}\s?\d{2}$/, "fr-FR": /^(\+?33|0)[67]\d{8}$/, "fr-GF": /^(\+?594|0|00594)[67]\d{8}$/, "fr-GP": /^(\+?590|0|00590)[67]\d{8}$/, "fr-MQ": /^(\+?596|0|00596)[67]\d{8}$/, "fr-RE": /^(\+?262|0|00262)[67]\d{8}$/, "he-IL": /^(\+972|0)([23489]|5[012345689]|77)[1-9]\d{6}$/, "hu-HU": /^(\+?36)(20|30|70)\d{7}$/, "id-ID": /^(\+?62|0)8(1[123456789]|2[1238]|3[1238]|5[12356789]|7[78]|9[56789]|8[123456789])([\s?|\d]{5,11})$/, "it-IT": /^(\+?39)?\s?3\d{2} ?\d{6,7}$/, "ja-JP": /^(\+81[ \-]?(\(0\))?|0)[6789]0[ \-]?\d{4}[ \-]?\d{4}$/, "kk-KZ": /^(\+?7|8)?7\d{9}$/, "kl-GL": /^(\+?299)?\s?\d{2}\s?\d{2}\s?\d{2}$/, "ko-KR": /^((\+?82)[ \-]?)?0?1([0|1|6|7|8|9]{1})[ \-]?\d{3,4}[ \-]?\d{4}$/, "lt-LT": /^(\+370|8)\d{8}$/, "ms-MY": /^(\+?6?01){1}(([0145]{1}(\-|\s)?\d{7,8})|([236789]{1}(\s|\-)?\d{7}))$/, "nb-NO": /^(\+?47)?[49]\d{7}$/, "ne-NP": /^(\+?977)?9[78]\d{8}$/, "nl-BE": /^(\+?32|0)4?\d{8}$/, "nl-NL": /^(((\+|00)?31\(0\))|((\+|00)?31)|0)6{1}\d{8}$/, "nn-NO": /^(\+?47)?[49]\d{7}$/, "pl-PL": /^(\+?48)? ?[5-8]\d ?\d{3} ?\d{2} ?\d{2}$/, "pt-BR": /(?=^(\+?5{2}\-?|0)[1-9]{2}\-?\d{4}\-?\d{4}$)(^(\+?5{2}\-?|0)[1-9]{2}\-?[6-9]{1}\d{3}\-?\d{4}$)|(^(\+?5{2}\-?|0)[1-9]{2}\-?9[6-9]{1}\d{3}\-?\d{4}$)/, "pt-PT": /^(\+?351)?9[1236]\d{7}$/, "ro-RO": /^(\+?4?0)\s?7\d{2}(\/|\s|\.|\-)?\d{3}(\s|\.|\-)?\d{3}$/, "ru-RU": /^(\+?7|8)?9\d{9}$/, "sl-SI": /^(\+386\s?|0)(\d{1}\s?\d{3}\s?\d{2}\s?\d{2}|\d{2}\s?\d{3}\s?\d{3})$/, "sk-SK": /^(\+?421)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/, "sr-RS": /^(\+3816|06)[- \d]{5,9}$/, "sv-SE": /^(\+?46|0)[\s\-]?7[\s\-]?[02369]([\s\-]?\d){7}$/, "th-TH": /^(\+66|66|0)\d{9}$/, "tr-TR": /^(\+?90|0)?5\d{9}$/, "uk-UA": /^(\+?38|8)?0\d{9}$/, "uz-UZ": /^(\+?998)?(6[125-79]|7[1-69]|88|9\d)\d{7}$/, "vi-VN": /^(\+?84|0)((3([2-9]))|(5([2689]))|(7([0|6-9]))|(8([1-6|89]))|(9([0-9])))([0-9]{7})$/, "zh-CN": /^((\+|00)86)?1([3568][0-9]|4[579]|6[67]|7[01235678]|9[012356789])[0-9]{8}$/, "zh-TW": /^(\+?886\-?|0)?9\d{8}$/ }; Qt["en-CA"] = Qt["en-US"], Qt["fr-BE"] = Qt["nl-BE"], Qt["zh-HK"] = Qt["en-HK"], Qt["zh-MO"] = Qt["en-MO"]; var te = Object.keys(Qt), ee = /^(0x)[0-9a-f]{40}$/i; var re = { symbol: "$", require_symbol: !1, allow_space_after_symbol: !1, symbol_after_digits: !1, allow_negatives: !0, parens_for_negatives: !1, negative_sign_before_digits: !1, negative_sign_after_digits: !1, allow_negative_sign_placeholder: !1, thousands_separator: ",", decimal_separator: ".", allow_decimal: !0, require_decimal: !1, digits_after_decimal: [2], allow_space_after_digits: !1 }; var ne = /^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/; var ie = /^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-3])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/; var oe = /([01][0-9]|2[0-3])/, ae = /[0-5][0-9]/, se = new RegExp("[-+]".concat(oe.source, ":").concat(ae.source)), se = new RegExp("([zZ]|".concat(se.source, ")")), oe = new RegExp("".concat(oe.source, ":").concat(ae.source, ":").concat(/([0-5][0-9]|60)/.source).concat(/(\.[0-9]+)?/.source)), ae = new RegExp("".concat(/[0-9]{4}/.source, "-").concat(/(0[1-9]|1[0-2])/.source, "-").concat(/([12]\d|0[1-9]|3[01])/.source)), oe = new RegExp("".concat(oe.source).concat(se.source)), le = new RegExp("".concat(ae.source, "[ tT]").concat(oe.source)); var ue = ["AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"]; var de = ["AFG", "ALA", "ALB", "DZA", "ASM", "AND", "AGO", "AIA", "ATA", "ATG", "ARG", "ARM", "ABW", "AUS", "AUT", "AZE", "BHS", "BHR", "BGD", "BRB", "BLR", "BEL", "BLZ", "BEN", "BMU", "BTN", "BOL", "BES", "BIH", "BWA", "BVT", "BRA", "IOT", "BRN", "BGR", "BFA", "BDI", "KHM", "CMR", "CAN", "CPV", "CYM", "CAF", "TCD", "CHL", "CHN", "CXR", "CCK", "COL", "COM", "COG", "COD", "COK", "CRI", "CIV", "HRV", "CUB", "CUW", "CYP", "CZE", "DNK", "DJI", "DMA", "DOM", "ECU", "EGY", "SLV", "GNQ", "ERI", "EST", "ETH", "FLK", "FRO", "FJI", "FIN", "FRA", "GUF", "PYF", "ATF", "GAB", "GMB", "GEO", "DEU", "GHA", "GIB", "GRC", "GRL", "GRD", "GLP", "GUM", "GTM", "GGY", "GIN", "GNB", "GUY", "HTI", "HMD", "VAT", "HND", "HKG", "HUN", "ISL", "IND", "IDN", "IRN", "IRQ", "IRL", "IMN", "ISR", "ITA", "JAM", "JPN", "JEY", "JOR", "KAZ", "KEN", "KIR", "PRK", "KOR", "KWT", "KGZ", "LAO", "LVA", "LBN", "LSO", "LBR", "LBY", "LIE", "LTU", "LUX", "MAC", "MKD", "MDG", "MWI", "MYS", "MDV", "MLI", "MLT", "MHL", "MTQ", "MRT", "MUS", "MYT", "MEX", "FSM", "MDA", "MCO", "MNG", "MNE", "MSR", "MAR", "MOZ", "MMR", "NAM", "NRU", "NPL", "NLD", "NCL", "NZL", "NIC", "NER", "NGA", "NIU", "NFK", "MNP", "NOR", "OMN", "PAK", "PLW", "PSE", "PAN", "PNG", "PRY", "PER", "PHL", "PCN", "POL", "PRT", "PRI", "QAT", "REU", "ROU", "RUS", "RWA", "BLM", "SHN", "KNA", "LCA", "MAF", "SPM", "VCT", "WSM", "SMR", "STP", "SAU", "SEN", "SRB", "SYC", "SLE", "SGP", "SXM", "SVK", "SVN", "SLB", "SOM", "ZAF", "SGS", "SSD", "ESP", "LKA", "SDN", "SUR", "SJM", "SWZ", "SWE", "CHE", "SYR", "TWN", "TJK", "TZA", "THA", "TLS", "TGO", "TKL", "TON", "TTO", "TUN", "TUR", "TKM", "TCA", "TUV", "UGA", "UKR", "ARE", "GBR", "USA", "UMI", "URY", "UZB", "VUT", "VEN", "VNM", "VGB", "VIR", "WLF", "ESH", "YEM", "ZMB", "ZWE"]; var ce = /^[A-Z2-7]+=*$/; var fe = /^[a-z]+\/[a-z0-9\-\+]+$/i, $e = /^[a-z\-]+=[a-z0-9\-]+$/i, Ae = /^[a-z0-9!\$&'\(\)\*\+,;=\-\._~:@\/\?%\s]*$/i; var pe = /^magnet:\?xt=urn:[a-z0-9]+:[a-z0-9]{32,40}&dn=.+&tr=.+$/i; var ge = /^(application|audio|font|image|message|model|multipart|text|video)\/[a-zA-Z0-9\.\-\+]{1,100}$/i, he = /^text\/[a-zA-Z0-9\.\-\+]{1,100};\s?charset=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?$/i, me = /^multipart\/[a-zA-Z0-9\.\-\+]{1,100}(;\s?(boundary|charset)=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?){0,2}$/i; var ve = /^\(?[+-]?(90(\.0+)?|[1-8]?\d(\.\d+)?)$/, Ze = /^\s?[+-]?(180(\.0+)?|1[0-7]\d(\.\d+)?|\d{1,2}(\.\d+)?)\)?$/, Se = /^(([1-8]?\d)\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|90\D+0\D+0)\D+[NSns]?$/i, _e = /^\s*([1-7]?\d{1,2}\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|180\D+0\D+0)\D+[EWew]?$/i, Fe = { checkDMS: !1 }; var se = /^\d{4}$/, ae = /^\d{5}$/, oe = /^\d{6}$/, Ee = { AD: /^AD\d{3}$/, AT: se, AU: se, AZ: /^AZ\d{4}$/, BE: se, BG: se, BR: /^\d{5}-\d{3}$/, CA: /^[ABCEGHJKLMNPRSTVXY]\d[ABCEGHJ-NPRSTV-Z][\s\-]?\d[ABCEGHJ-NPRSTV-Z]\d$/i, CH: se, CZ: /^\d{3}\s?\d{2}$/, DE: ae, DK: se, DZ: ae, EE: ae, ES: /^(5[0-2]{1}|[0-4]{1}\d{1})\d{3}$/, FI: ae, FR: /^\d{2}\s?\d{3}$/, GB: /^(gir\s?0aa|[a-z]{1,2}\d[\da-z]?\s?(\d[a-z]{2})?)$/i, GR: /^\d{3}\s?\d{2}$/, HR: /^([1-5]\d{4}$)/, HU: se, ID: ae, IE: /^(?!.*(?:o))[A-z]\d[\dw]\s\w{4}$/i, IL: /^(\d{5}|\d{7})$/, IN: /^((?!10|29|35|54|55|65|66|86|87|88|89)[1-9][0-9]{5})$/, IS: /^\d{3}$/, IT: ae, JP: /^\d{3}\-\d{4}$/, KE: ae, LI: /^(948[5-9]|949[0-7])$/, LT: /^LT\-\d{5}$/, LU: se, LV: /^LV\-\d{4}$/, MX: ae, MT: /^[A-Za-z]{3}\s{0,1}\d{4}$/, NL: /^\d{4}\s?[a-z]{2}$/i, NO: se, NP: /^(10|21|22|32|33|34|44|45|56|57)\d{3}$|^(977)$/i, NZ: se, PL: /^\d{2}\-\d{3}$/, PR: /^00[679]\d{2}([ -]\d{4})?$/, PT: /^\d{4}\-\d{3}?$/, RO: oe, RU: oe, SA: ae, SE: /^[1-9]\d{2}\s?\d{2}$/, SI: se, SK: /^\d{3}\s?\d{2}$/, TN: se, TW: /^\d{3}(\d{2})?$/, UA: ae, US: /^\d{5}(-\d{4})?$/, ZA: se, ZM: ae }, ae = Object.keys(Ee); function Re(t, e) { c(t); e = e ? new RegExp("^[".concat(e.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), "]+"), "g") : /^\s+/g; return t.replace(e, "") } function Ie(t, e) { c(t); e = e ? new RegExp("[".concat(e.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), "]+$"), "g") : /\s+$/g; return t.replace(e, "") } function Ce(t, e) { return c(t), t.replace(new RegExp("[".concat(e, "]+"), "g"), "") } var Me = { all_lowercase: !0, gmail_lowercase: !0, gmail_remove_dots: !0, gmail_remove_subaddress: !0, gmail_convert_googlemaildotcom: !0, outlookdotcom_lowercase: !0, outlookdotcom_remove_subaddress: !0, yahoo_lowercase: !0, yahoo_remove_subaddress: !0, yandex_lowercase: !0, icloud_lowercase: !0, icloud_remove_subaddress: !0 }, be = ["icloud.com", "me.com"], Le = ["hotmail.at", "hotmail.be", "hotmail.ca", "hotmail.cl", "hotmail.co.il", "hotmail.co.nz", "hotmail.co.th", "hotmail.co.uk", "hotmail.com", "hotmail.com.ar", "hotmail.com.au", "hotmail.com.br", "hotmail.com.gr", "hotmail.com.mx", "hotmail.com.pe", "hotmail.com.tr", "hotmail.com.vn", "hotmail.cz", "hotmail.de", "hotmail.dk", "hotmail.es", "hotmail.fr", "hotmail.hu", "hotmail.id", "hotmail.ie", "hotmail.in", "hotmail.it", "hotmail.jp", "hotmail.kr", "hotmail.lv", "hotmail.my", "hotmail.ph", "hotmail.pt", "hotmail.sa", "hotmail.sg", "hotmail.sk", "live.be", "live.co.uk", "live.com", "live.com.ar", "live.com.mx", "live.de", "live.es", "live.eu", "live.fr", "live.it", "live.nl", "msn.com", "outlook.at", "outlook.be", "outlook.cl", "outlook.co.il", "outlook.co.nz", "outlook.co.th", "outlook.com", "outlook.com.ar", "outlook.com.au", "outlook.com.br", "outlook.com.gr", "outlook.com.pe", "outlook.com.tr", "outlook.com.vn", "outlook.cz", "outlook.de", "outlook.dk", "outlook.es", "outlook.fr", "outlook.hu", "outlook.id", "outlook.ie", "outlook.in", "outlook.it", "outlook.jp", "outlook.kr", "outlook.lv", "outlook.my", "outlook.ph", "outlook.pt", "outlook.sa", "outlook.sg", "outlook.sk", "passport.com"], Ne = ["rocketmail.com", "yahoo.ca", "yahoo.co.uk", "yahoo.com", "yahoo.de", "yahoo.fr", "yahoo.in", "yahoo.it", "ymail.com"], ye = ["yandex.ru", "yandex.ua", "yandex.kz", "yandex.com", "yandex.by", "ya.ru"]; function Te(t) { return 1 < t.length ? t : "" } var we = /^[^\s-_](?!.*?[-_]{2,})([a-z0-9-\\]{1,})[^\s]*[^-_\s]$/; return { version: "13.1.17", toDate: o, toFloat: R, toInt: function (t, e) { return c(t), parseInt(t, e || 10) }, toBoolean: function (t, e) { return c(t), e ? "1" === t || /^true$/i.test(t) : "0" !== t && !/^false$/i.test(t) && "" !== t }, equals: function (t, e) { return c(t), t === e }, contains: function (t, e, r) { return c(t), (r = C(r, M)).ignoreCase ? 0 <= t.toLowerCase().indexOf(I(e).toLowerCase()) : 0 <= t.indexOf(I(e)) }, matches: function (t, e, r) { return c(t), "[object RegExp]" !== Object.prototype.toString.call(e) && (e = new RegExp(e, r)), e.test(t) }, isEmail: function (t, e) { if (c(t), (e = C(e, x)).require_display_name || e.allow_display_name) { var r = t.match(B); if (r) { var n = d(r, 3), i = n[1]; if (t = n[2], i.endsWith(" ") && (i = i.substr(0, i.length - 1)), !function (t) { var e = t.match(/^"(.+)"$/i); if ((t = e ? e[1] : t).trim()) { if (/[\.";<>]/.test(t)) { if (!e) return; if (!(t.split('"').length === t.split('\\"').length)) return } return 1 } }(i)) return !1 } else if (e.require_display_name) return !1 } if (!e.ignore_max_length && 254 < t.length) return !1; if (n = t.split("@"), i = n.pop(), t = n.join("@"), n = i.toLowerCase(), e.domain_specific_validation && ("gmail.com" === n || "googlemail.com" === n)) { n = (t = t.toLowerCase()).split("+")[0]; if (!b(n.replace(".", ""), { min: 6, max: 30 })) return !1; for (var o = n.split("."), a = 0; a < o.length; a++)if (!O.test(o[a])) return !1 } if (!(!1 !== e.ignore_max_length || b(t, { max: 64 }) && b(i, { max: 254 }))) return !1; if (!N(i, { require_tld: e.require_tld })) { if (!e.allow_ip_domain) return !1; if (!w(i)) { if (!i.startsWith("[") || !i.endsWith("]")) return !1; i = i.substr(1, i.length - 2); if (0 === i.length || !w(i)) return !1 } } if ('"' === t[0]) return t = t.slice(1, t.length - 1), (e.allow_utf8_local_part ? P : G).test(t); for (var s = e.allow_utf8_local_part ? U : D, l = t.split("."), u = 0; u < l.length; u++)if (!s.test(l[u])) return !1; return !0 }, isURL: function (t, e) { if (c(t), !t || /[\s<>]/.test(t)) return !1; if (0 === t.indexOf("mailto:")) return !1; if ((e = C(e, K)).validate_length && 2083 <= t.length) return !1; var r, n, i, o = t.split("#"); if (1 < (o = (t = (o = (t = o.shift()).split("?")).shift()).split("://")).length) { if (i = o.shift().toLowerCase(), e.require_valid_protocol && -1 === e.protocols.indexOf(i)) return !1 } else { if (e.require_protocol) return !1; if ("//" === t.substr(0, 2)) { if (!e.allow_protocol_relative_urls) return !1; o[0] = t.substr(2) } } if ("" === (t = o.join("://"))) return !1; if ("" === (t = (o = t.split("/")).shift()) && !e.require_host) return !0; if (1 < (o = t.split("@")).length) { if (e.disallow_auth) return !1; if (-1 === (a = o.shift()).indexOf(":") || 0 <= a.indexOf(":") && 2 < a.split(":").length) return !1 } i = n = null; var a = (t = o.join("@")).match(H); if (a ? (r = "", i = a[1], n = a[2] || null) : (r = (o = t.split(":")).shift(), o.length && (n = o.join(":"))), null !== n) { if (o = parseInt(n, 10), !/^[0-9]+$/.test(n) || o <= 0 || 65535 < o) return !1 } else if (e.require_port) return !1; return !!(w(r) || N(r, e) || i && w(i, 6)) && (r = r || i, !(e.host_whitelist && !k(r, e.host_whitelist)) && (!e.host_blacklist || !k(r, e.host_blacklist))) }, isMACAddress: function (t, e) { return c(t), e && e.no_colons ? V.test(t) : z.test(t) || W.test(t) || Y.test(t) || j.test(t) }, isIP: w, isIPRange: function (t) { return c(t), 2 === (t = t.split("/")).length && (!!J.test(t[1]) && (!(1 < t[1].length && t[1].startsWith("0")) && (w(t[0], 4) && t[1] <= 32 && 0 <= t[1]))) }, isFQDN: N, isBoolean: function (t) { return c(t), 0 <= ["true", "false", "1", "0"].indexOf(t) }, isIBAN: function (t) { return c(t), (e = (r = (e = t).replace(/[\s\-]+/gi, "").toUpperCase()).slice(0, 2).toUpperCase()) in Lt && Lt[e].test(r) && 1 === ((t = (t = t).replace(/[^A-Z0-9]+/gi, "").toUpperCase()).slice(4) + t.slice(0, 4)).replace(/[A-Z]/g, function (t) { return t.charCodeAt(0) - 55 }).match(/\d{1,7}/g).reduce(function (t, e) { return Number(t + e) % 97 }, ""); var e, r }, isBIC: function (t) { return c(t), Nt.test(t) }, isAlpha: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : "en-US"; if (c(t), e in a) return a[e].test(t); throw new Error("Invalid locale '".concat(e, "'")) }, isAlphaLocales: Q, isAlphanumeric: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : "en-US"; if (c(t), e in s) return s[e].test(t); throw new Error("Invalid locale '".concat(e, "'")) }, isAlphanumericLocales: tt, isNumeric: function (t, e) { return c(t), (e && e.no_symbols ? et : new RegExp("^[+-]?([0-9]*[".concat((e || {}).locale ? u[e.locale] : ".", "])?[0-9]+$"))).test(t) }, isPassportNumber: function (t, e) { return c(t), t = t.replace(/\s/g, "").toUpperCase(), e.toUpperCase() in rt && rt[e].test(t) }, isPort: function (t) { return ot(t, { min: 0, max: 65535 }) }, isLowercase: function (t) { return c(t), t === t.toLowerCase() }, isUppercase: function (t) { return c(t), t === t.toUpperCase() }, isAscii: function (t) { return c(t), lt.test(t) }, isFullWidth: function (t) { return c(t), ut.test(t) }, isHalfWidth: function (t) { return c(t), dt.test(t) }, isVariableWidth: function (t) { return c(t), ut.test(t) && dt.test(t) }, isMultibyte: function (t) { return c(t), ct.test(t) }, isSemVer: function (t) { return c(t), At.test(t) }, isSurrogatePair: function (t) { return c(t), pt.test(t) }, isInt: ot, isIMEI: function (t, e) { c(t); var r = at; if ((e = e || {}).allow_hyphens && (r = st), !r.test(t)) return !1; t = t.replace(/-/g, ""); for (var n = 0, i = 2, o = 0; o < 14; o++) { var a = t.substring(14 - o - 1, 14 - o), a = parseInt(a, 10) * i; n += 10 <= a ? a % 10 + 1 : a, 1 === i ? i += 1 : --i } return (10 - n % 10) % 10 === parseInt(t.substring(14, 15), 10) }, isFloat: F, isFloatLocales: E, isDecimal: function (t, e) { if (c(t), (e = C(e, ht)).locale in u) return !gt(mt, t.replace(/ /g, "")) && (r = e, new RegExp("^[-+]?([0-9]+)?(\\".concat(u[r.locale], "[0-9]{").concat(r.decimal_digits, "})").concat(r.force_decimal ? "" : "?", "$")).test(t)); var r; throw new Error("Invalid locale '".concat(e.locale, "'")) }, isHexadecimal: Zt, isOctal: function (t) { return c(t), St.test(t) }, isDivisibleBy: function (t, e) { return c(t), R(t) % parseInt(e, 10) == 0 }, isHexColor: function (t) { return c(t), _t.test(t) }, isRgbColor: function (t) { var e = !(1 < arguments.length && void 0 !== arguments[1]) || arguments[1]; return c(t), e ? Ft.test(t) || Et.test(t) || Rt.test(t) || It.test(t) : Ft.test(t) || Et.test(t) }, isHSL: function (t) { return c(t), Ct.test(t) || Mt.test(t) }, isISRC: function (t) { return c(t), bt.test(t) }, isMD5: function (t) { return c(t), yt.test(t) }, isHash: function (t, e) { return c(t), new RegExp("^[a-fA-F0-9]{".concat(Tt[e], "}$")).test(t) }, isJWT: function (t) { c(t); var e = t.split("."); return !(3 < (t = e.length) || t < 2) && e.reduce(function (t, e) { return t && Dt(e, { urlSafe: !0 }) }, !0) }, isJSON: function (t, e) { c(t); try { e = C(e, Ot); var r = []; e.allow_primitives && (r = [null, !1, !0]); var n = JSON.parse(t); return r.includes(n) || !!n && "object" === i(n) } catch (t) { } return !1 }, isEmpty: function (t, e) { return c(t), 0 === ((e = C(e, Gt)).ignore_whitespace ? t.trim() : t).length }, isLength: function (t, e) { var r, n; return c(t), n = "object" === i(e) ? (r = e.min || 0, e.max) : (r = e || 0, arguments[2]), e = t.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g) || [], e = t.length - e.length, r <= e && (void 0 === n || e <= n) }, isLocale: function (t) { return c(t), "en_US_POSIX" === t || "ca_ES_VALENCIA" === t || q.test(t) }, isByteLength: b, isUUID: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : "all"; return c(t), (e = Ut[e]) && e.test(t) }, isMongoId: function (t) { return c(t), Zt(t) && 24 === t.length }, isAfter: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : String(new Date); return c(t), e = o(e), !!((t = o(t)) && e && e < t) }, isBefore: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : String(new Date); return c(t), e = o(e), !!((t = o(t)) && e && t < e) }, isIn: function (t, e) { if (c(t), "[object Array]" !== Object.prototype.toString.call(e)) return "object" === i(e) ? e.hasOwnProperty(t) : !(!e || "function" != typeof e.indexOf) && 0 <= e.indexOf(t); var r, n = []; for (r in e) !{}.hasOwnProperty.call(e, r) || (n[r] = I(e[r])); return 0 <= n.indexOf(t) }, isCreditCard: function (t) { c(t); var e = t.replace(/[- ]+/g, ""); if (!Pt.test(e)) return !1; for (var r, n, i = 0, o = e.length - 1; 0 <= o; o--)r = e.substring(o, o + 1), r = parseInt(r, 10), i += n && 10 <= (r *= 2) ? r % 10 + 1 : r, n = !n; return !(i % 10 != 0 || !e) }, isIdentityCard: function (t, e) { if (c(t), e in Kt) return Kt[e](t); if ("any" !== e) throw new Error("Invalid locale '".concat(e, "'")); for (var r in Kt) { if (Kt.hasOwnProperty(r)) if ((0, Kt[r])(t)) return !0 } return !1 }, isEAN: function (t) { c(t); var e = Number(t.slice(-1)); return kt.test(t) && e === zt(t) }, isISIN: function (t) { if (c(t), !Vt.test(t)) return !1; for (var e, r = t.replace(/[A-Z]/g, function (t) { return parseInt(t, 36) }), n = 0, i = !0, o = r.length - 2; 0 <= o; o--)e = r.substring(o, o + 1), e = parseInt(e, 10), n += i && 10 <= (e *= 2) ? e + 1 : e, i = !i; return parseInt(t.substr(t.length - 1), 10) === (1e4 - n) % 10 }, isISBN: function t(e) { var r = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : ""; if (c(e), !(r = String(r))) return t(e, 10) || t(e, 13); var n, i = e.replace(/[\s-]+/g, ""), o = 0; if ("10" === r) { if (!Wt.test(i)) return !1; for (n = 0; n < 9; n++)o += (n + 1) * i.charAt(n); if ("X" === i.charAt(9) ? o += 100 : o += 10 * i.charAt(9), o % 11 == 0) return !!i } else if ("13" === r) { if (!Yt.test(i)) return !1; for (n = 0; n < 12; n++)o += jt[n % 2] * i.charAt(n); if (i.charAt(12) - (10 - o % 10) % 10 == 0) return !!i } return !1 }, isISSN: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}; c(t); var r = "^\\d{4}-?\\d{3}[\\dX]$", r = e.require_hyphen ? r.replace("?", "") : r; if (!(r = e.case_sensitive ? new RegExp(r) : new RegExp(r, "i")).test(t)) return !1; for (var n = t.replace("-", "").toUpperCase(), i = 0, o = 0; o < n.length; o++) { var a = n[o]; i += ("X" === a ? 10 : +a) * (8 - o) } return i % 11 == 0 }, isMobilePhone: function (e, t, r) { if (c(e), r && r.strictMode && !e.startsWith("+")) return !1; if (Array.isArray(t)) return t.some(function (t) { if (Qt.hasOwnProperty(t) && Qt[t].test(e)) return !0; return !1 }); if (t in Qt) return Qt[t].test(e); if (t && "any" !== t) throw new Error("Invalid locale '".concat(t, "'")); for (var n in Qt) { if (Qt.hasOwnProperty(n)) if (Qt[n].test(e)) return !0 } return !1 }, isMobilePhoneLocales: te, isPostalCode: function (t, e) { if (c(t), e in Ee) return Ee[e].test(t); if ("any" !== e) throw new Error("Invalid locale '".concat(e, "'")); for (var r in Ee) { if (Ee.hasOwnProperty(r)) if (Ee[r].test(t)) return !0 } return !1 }, isPostalCodeLocales: ae, isEthereumAddress: function (t) { return c(t), ee.test(t) }, isCurrency: function (t, e) { return c(t), function (t) { var r = "\\d{".concat(t.digits_after_decimal[0], "}"); t.digits_after_decimal.forEach(function (t, e) { 0 !== e && (r = "".concat(r, "|\\d{").concat(t, "}")) }); var e = "(".concat(t.symbol.replace(/\W/, function (t) { return "\\".concat(t) }), ")").concat(t.require_symbol ? "" : "?"), n = "[1-9]\\d{0,2}(\\".concat(t.thousands_separator, "\\d{3})*"), i = "(".concat(["0", "[1-9]\\d*", n].join("|"), ")?"), n = "(\\".concat(t.decimal_separator, "(").concat(r, "))").concat(t.require_decimal ? "" : "?"), n = i + (t.allow_decimal || t.require_decimal ? n : ""); return t.allow_negatives && !t.parens_for_negatives && (t.negative_sign_after_digits ? n += "-?" : t.negative_sign_before_digits && (n = "-?" + n)), t.allow_negative_sign_placeholder ? n = "( (?!\\-))?".concat(n) : t.allow_space_after_symbol ? n = " ?".concat(n) : t.allow_space_after_digits && (n += "( (?!$))?"), t.symbol_after_digits ? n += e : n = e + n, t.allow_negatives && (t.parens_for_negatives ? n = "(\\(".concat(n, "\\)|").concat(n, ")") : t.negative_sign_before_digits || t.negative_sign_after_digits || (n = "-?" + n)), new RegExp("^(?!-? )(?=.*\\d)".concat(n, "$")) }(e = C(e, re)).test(t) }, isBtcAddress: function (t) { return c(t), ne.test(t) }, isISO8601: function (t, e) { c(t); var r = ie.test(t); return e && r && e.strict ? function (t) { var e = t.match(/^(\d{4})-?(\d{3})([ T]{1}\.*|$)/); if (e) { var r = Number(e[1]), n = Number(e[2]); return r % 4 == 0 && r % 100 != 0 || r % 400 == 0 ? n <= 366 : n <= 365 } var i = t.match(/(\d{4})-?(\d{0,2})-?(\d*)/).map(Number), e = i[1], r = i[2], n = i[3], t = r ? "0".concat(r).slice(-2) : r, i = n ? "0".concat(n).slice(-2) : n, i = new Date("".concat(e, "-").concat(t || "01", "-").concat(i || "01")); return !r || !n || i.getUTCFullYear() === e && i.getUTCMonth() + 1 === r && i.getUTCDate() === n }(t) : r }, isRFC3339: function (t) { return c(t), le.test(t) }, isISO31661Alpha2: function (t) { return c(t), gt(ue, t.toUpperCase()) }, isISO31661Alpha3: function (t) { return c(t), gt(de, t.toUpperCase()) }, isBase32: function (t) { return c(t), !(t.length % 8 != 0 || !ce.test(t)) }, isBase64: Dt, isDataURI: function (t) { c(t); var e = t.split(","); if (e.length < 2) return !1; var r = e.shift().trim().split(";"); if ("data:" !== (t = r.shift()).substr(0, 5)) return !1; if ("" !== (t = t.substr(5)) && !fe.test(t)) return !1; for (var n = 0; n < r.length; n++)if ((n !== r.length - 1 || "base64" !== r[n].toLowerCase()) && !$e.test(r[n])) return !1; for (var i = 0; i < e.length; i++)if (!Ae.test(e[i])) return !1; return !0 }, isMagnetURI: function (t) { return c(t), pe.test(t.trim()) }, isMimeType: function (t) { return c(t), ge.test(t) || he.test(t) || me.test(t) }, isLatLong: function (t, e) { return c(t), e = C(e, Fe), !!t.includes(",") && (!((t = t.split(","))[0].startsWith("(") && !t[1].endsWith(")") || t[1].endsWith(")") && !t[0].startsWith("(")) && (e.checkDMS ? Se.test(t[0]) && _e.test(t[1]) : ve.test(t[0]) && Ze.test(t[1]))) }, ltrim: Re, rtrim: Ie, trim: function (t, e) { return Ie(Re(t, e), e) }, escape: function (t) { return c(t), t.replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(//g, ">").replace(/\//g, "/").replace(/\\/g, "\").replace(/`/g, "`") }, unescape: function (t) { return c(t), t.replace(/&/g, "&").replace(/"/g, '"').replace(/'/g, "'").replace(/</g, "<").replace(/>/g, ">").replace(///g, "/").replace(/\/g, "\\").replace(/`/g, "`") }, stripLow: function (t, e) { return c(t), Ce(t, e ? "\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F" : "\\x00-\\x1F\\x7F") }, whitelist: function (t, e) { return c(t), t.replace(new RegExp("[^".concat(e, "]+"), "g"), "") }, blacklist: Ce, isWhitelisted: function (t, e) { c(t); for (var r = t.length - 1; 0 <= r; r--)if (-1 === e.indexOf(t[r])) return !1; return !0 }, normalizeEmail: function (t, e) { e = C(e, Me); var r = t.split("@"), t = r.pop(); if ((r = [r.join("@"), t])[1] = r[1].toLowerCase(), "gmail.com" === r[1] || "googlemail.com" === r[1]) { if (e.gmail_remove_subaddress && (r[0] = r[0].split("+")[0]), e.gmail_remove_dots && (r[0] = r[0].replace(/\.+/g, Te)), !r[0].length) return !1; (e.all_lowercase || e.gmail_lowercase) && (r[0] = r[0].toLowerCase()), r[1] = e.gmail_convert_googlemaildotcom ? "gmail.com" : r[1] } else if (0 <= be.indexOf(r[1])) { if (e.icloud_remove_subaddress && (r[0] = r[0].split("+")[0]), !r[0].length) return !1; (e.all_lowercase || e.icloud_lowercase) && (r[0] = r[0].toLowerCase()) } else if (0 <= Le.indexOf(r[1])) { if (e.outlookdotcom_remove_subaddress && (r[0] = r[0].split("+")[0]), !r[0].length) return !1; (e.all_lowercase || e.outlookdotcom_lowercase) && (r[0] = r[0].toLowerCase()) } else if (0 <= Ne.indexOf(r[1])) { if (e.yahoo_remove_subaddress && (t = r[0].split("-"), r[0] = 1 < t.length ? t.slice(0, -1).join("-") : t[0]), !r[0].length) return !1; (e.all_lowercase || e.yahoo_lowercase) && (r[0] = r[0].toLowerCase()) } else 0 <= ye.indexOf(r[1]) ? ((e.all_lowercase || e.yandex_lowercase) && (r[0] = r[0].toLowerCase()), r[1] = "yandex.ru") : e.all_lowercase && (r[0] = r[0].toLowerCase()); return r.join("@") }, toString: toString, isSlug: function (t) { return c(t), we.test(t) }, isTaxID: function (t) { var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : "en-US"; if (c(t), e in Xt) return !!Xt[e].test(t) && (!(e in qt) || qt[e](t)); throw new Error("Invalid locale '".concat(e, "'")) }, isDate: function (e, r) { if (r = C("string" == typeof r ? { format: r } : r, X), "string" == typeof e && /(^(y{4}|y{2})[\/-](m{1,2})[\/-](d{1,2})$)|(^(m{1,2})[\/-](d{1,2})[\/-]((y{4}|y{2})$))|(^(d{1,2})[\/-](m{1,2})[\/-]((y{4}|y{2})$))/gi.test(r.format)) { var t = r.delimiters.find(function (t) { return -1 !== r.format.indexOf(t) }), n = r.strictMode ? t : r.delimiters.find(function (t) { return -1 !== e.indexOf(t) }), i = {}, o = function (t, e) { var r; if ("undefined" == typeof Symbol || null == t[Symbol.iterator]) { if (Array.isArray(t) || (r = l(t)) || e && t && "number" == typeof t.length) { r && (t = r); var n = 0, e = function () { }; return { s: e, n: function () { return n >= t.length ? { done: !0 } : { done: !1, value: t[n++] } }, e: function (t) { throw t }, f: e } } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.") } var i, o = !0, a = !1; return { s: function () { r = t[Symbol.iterator]() }, n: function () { var t = r.next(); return o = t.done, t }, e: function (t) { a = !0, i = t }, f: function () { try { o || null == r.return || r.return() } finally { if (a) throw i } } } }(function (t, e) { for (var r = [], n = Math.min(t.length, e.length), i = 0; i < n; i++)r.push([t[i], e[i]]); return r }(e.split(n), r.format.toLowerCase().split(t))); try { for (o.s(); !(s = o.n()).done;) { var a = d(s.value, 2), s = a[0], a = a[1]; if (s.length !== a.length) return !1; i[a.charAt(0)] = s } } catch (t) { o.e(t) } finally { o.f() } return new Date("".concat(i.m, "/").concat(i.d, "/").concat(i.y)).getDate() === +i.d } return !r.strictMode && ("[object Date]" === Object.prototype.toString.call(e) && isFinite(e)) } } });
\ No newline at end of file
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.validator=e()}(this,function(){"use strict";function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function d(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var r=[],n=!0,i=!1,o=void 0;try{for(var a,s=t[Symbol.iterator]();!(n=(a=s.next()).done)&&(r.push(a.value),!e||r.length!==e);n=!0);}catch(t){i=!0,o=t}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}return r}(t,e)||l(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function r(t){return function(t){if(Array.isArray(t))return n(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||l(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(t,e):void 0}}function n(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=e.min)&&(!e.hasOwnProperty("max")||n<=e.max)&&(!e.hasOwnProperty("lt")||ne.gt)}a["fa-IR"]=a["fa-IR"],a["pt-BR"]=a["pt-PT"],s["pt-BR"]=s["pt-PT"],u["pt-BR"]=u["pt-PT"],a["pl-Pl"]=a["pl-PL"],s["pl-Pl"]=s["pl-PL"],u["pl-Pl"]=u["pl-PL"];var E=Object.keys(u);function R(t){return F(t)?parseFloat(t):NaN}function I(t){return"object"===i(t)&&null!==t?t="function"==typeof t.toString?t.toString():"[object Object]":(null==t||isNaN(t)&&!t.length)&&(t=""),String(t)}function C(t,e){var r,n=0e)return!1;if("::"===t)return!0;"::"===t.substr(0,2)?(r.shift(),r.shift(),n=!0):"::"===t.substr(t.length-2)&&(r.pop(),r.pop(),n=!0);for(var o=0;o$/i,D=/^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~]+$/i,O=/^[a-z\d]+$/,G=/^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f]))*$/i,U=/^[a-z\d!#\$%&'\*\+\-\/=\?\^_`{\|}~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+$/i,P=/^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|(\\[\x01-\x09\x0b\x0c\x0d-\x7f\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))*$/i;var K={protocols:["http","https","ftp"],require_tld:!0,require_protocol:!1,require_host:!0,require_port:!1,require_valid_protocol:!0,allow_underscores:!1,allow_trailing_dot:!1,allow_protocol_relative_urls:!1,validate_length:!0},H=/^\[([^\]]+)\](?::([0-9]+))?$/;function k(t,e){for(var r,n=0;n=e.min,i=!e.hasOwnProperty("max")||t<=e.max,o=!e.hasOwnProperty("lt")||te.gt;return r.test(t)&&n&&i&&o&&e}var at=/^[0-9]{15}$/,st=/^\d{2}-\d{6}-\d{6}-\d{1}$/;var lt=/^[\x00-\x7F]+$/;var ut=/[^\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;var dt=/[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;var ct=/[^\x00-\x7F]/;var ft,$t,At=($t="i",ft=(ft=["^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)","(?:-((?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-z-][0-9a-z-]*))*))","?(?:\\+([0-9a-z-]+(?:\\.[0-9a-z-]+)*))?$"]).join(""),new RegExp(ft,$t));var pt=/[\uD800-\uDBFF][\uDC00-\uDFFF]/;function gt(t,e){return t.some(function(t){return e===t})}var ht={force_decimal:!1,decimal_digits:"1,",locale:"en-US"},mt=["","-","+"];var vt=/^(0x|0h)?[0-9A-F]+$/i;function Zt(t){return c(t),vt.test(t)}var St=/^(0o)?[0-7]+$/i;var _t=/^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i;var Ft=/^rgb\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){2}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\)$/,Et=/^rgba\((([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)$/,Rt=/^rgb\((([0-9]%|[1-9][0-9]%|100%),){2}([0-9]%|[1-9][0-9]%|100%)\)/,It=/^rgba\((([0-9]%|[1-9][0-9]%|100%),){3}(0?\.\d|1(\.0)?|0(\.0)?)\)/;var Ct=/^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s*)(\s*,\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(,\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i,Lt=/^(hsl)a?\(\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn|\s)(\s*(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}\s*(\/\s*((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?)\s*)?\)$/i;var Mt=/^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/;var bt={AD:/^(AD[0-9]{2})\d{8}[A-Z0-9]{12}$/,AE:/^(AE[0-9]{2})\d{3}\d{16}$/,AL:/^(AL[0-9]{2})\d{8}[A-Z0-9]{16}$/,AT:/^(AT[0-9]{2})\d{16}$/,AZ:/^(AZ[0-9]{2})[A-Z0-9]{4}\d{20}$/,BA:/^(BA[0-9]{2})\d{16}$/,BE:/^(BE[0-9]{2})\d{12}$/,BG:/^(BG[0-9]{2})[A-Z]{4}\d{6}[A-Z0-9]{8}$/,BH:/^(BH[0-9]{2})[A-Z]{4}[A-Z0-9]{14}$/,BR:/^(BR[0-9]{2})\d{23}[A-Z]{1}[A-Z0-9]{1}$/,BY:/^(BY[0-9]{2})[A-Z0-9]{4}\d{20}$/,CH:/^(CH[0-9]{2})\d{5}[A-Z0-9]{12}$/,CR:/^(CR[0-9]{2})\d{18}$/,CY:/^(CY[0-9]{2})\d{8}[A-Z0-9]{16}$/,CZ:/^(CZ[0-9]{2})\d{20}$/,DE:/^(DE[0-9]{2})\d{18}$/,DK:/^(DK[0-9]{2})\d{14}$/,DO:/^(DO[0-9]{2})[A-Z]{4}\d{20}$/,EE:/^(EE[0-9]{2})\d{16}$/,EG:/^(EG[0-9]{2})\d{25}$/,ES:/^(ES[0-9]{2})\d{20}$/,FI:/^(FI[0-9]{2})\d{14}$/,FO:/^(FO[0-9]{2})\d{14}$/,FR:/^(FR[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/,GB:/^(GB[0-9]{2})[A-Z]{4}\d{14}$/,GE:/^(GE[0-9]{2})[A-Z0-9]{2}\d{16}$/,GI:/^(GI[0-9]{2})[A-Z]{4}[A-Z0-9]{15}$/,GL:/^(GL[0-9]{2})\d{14}$/,GR:/^(GR[0-9]{2})\d{7}[A-Z0-9]{16}$/,GT:/^(GT[0-9]{2})[A-Z0-9]{4}[A-Z0-9]{20}$/,HR:/^(HR[0-9]{2})\d{17}$/,HU:/^(HU[0-9]{2})\d{24}$/,IE:/^(IE[0-9]{2})[A-Z0-9]{4}\d{14}$/,IL:/^(IL[0-9]{2})\d{19}$/,IQ:/^(IQ[0-9]{2})[A-Z]{4}\d{15}$/,IR:/^(IR[0-9]{2})0\d{2}0\d{18}$/,IS:/^(IS[0-9]{2})\d{22}$/,IT:/^(IT[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/,JO:/^(JO[0-9]{2})[A-Z]{4}\d{22}$/,KW:/^(KW[0-9]{2})[A-Z]{4}[A-Z0-9]{22}$/,KZ:/^(KZ[0-9]{2})\d{3}[A-Z0-9]{13}$/,LB:/^(LB[0-9]{2})\d{4}[A-Z0-9]{20}$/,LC:/^(LC[0-9]{2})[A-Z]{4}[A-Z0-9]{24}$/,LI:/^(LI[0-9]{2})\d{5}[A-Z0-9]{12}$/,LT:/^(LT[0-9]{2})\d{16}$/,LU:/^(LU[0-9]{2})\d{3}[A-Z0-9]{13}$/,LV:/^(LV[0-9]{2})[A-Z]{4}[A-Z0-9]{13}$/,MC:/^(MC[0-9]{2})\d{10}[A-Z0-9]{11}\d{2}$/,MD:/^(MD[0-9]{2})[A-Z0-9]{20}$/,ME:/^(ME[0-9]{2})\d{18}$/,MK:/^(MK[0-9]{2})\d{3}[A-Z0-9]{10}\d{2}$/,MR:/^(MR[0-9]{2})\d{23}$/,MT:/^(MT[0-9]{2})[A-Z]{4}\d{5}[A-Z0-9]{18}$/,MU:/^(MU[0-9]{2})[A-Z]{4}\d{19}[A-Z]{3}$/,NL:/^(NL[0-9]{2})[A-Z]{4}\d{10}$/,NO:/^(NO[0-9]{2})\d{11}$/,PK:/^(PK[0-9]{2})[A-Z0-9]{4}\d{16}$/,PL:/^(PL[0-9]{2})\d{24}$/,PS:/^(PS[0-9]{2})[A-Z0-9]{4}\d{21}$/,PT:/^(PT[0-9]{2})\d{21}$/,QA:/^(QA[0-9]{2})[A-Z]{4}[A-Z0-9]{21}$/,RO:/^(RO[0-9]{2})[A-Z]{4}[A-Z0-9]{16}$/,RS:/^(RS[0-9]{2})\d{18}$/,SA:/^(SA[0-9]{2})\d{2}[A-Z0-9]{18}$/,SC:/^(SC[0-9]{2})[A-Z]{4}\d{20}[A-Z]{3}$/,SE:/^(SE[0-9]{2})\d{20}$/,SI:/^(SI[0-9]{2})\d{15}$/,SK:/^(SK[0-9]{2})\d{20}$/,SM:/^(SM[0-9]{2})[A-Z]{1}\d{10}[A-Z0-9]{12}$/,SV:/^(SV[0-9]{2})[A-Z0-9]{4}\d{20}$/,TL:/^(TL[0-9]{2})\d{19}$/,TN:/^(TN[0-9]{2})\d{20}$/,TR:/^(TR[0-9]{2})\d{5}[A-Z0-9]{17}$/,UA:/^(UA[0-9]{2})\d{6}[A-Z0-9]{19}$/,VA:/^(VA[0-9]{2})\d{18}$/,VG:/^(VG[0-9]{2})[A-Z0-9]{4}\d{16}$/,XK:/^(XK[0-9]{2})\d{16}$/};var Nt=/^[A-z]{4}[A-z]{2}\w{2}(\w{3})?$/;var yt=/^[a-f0-9]{32}$/;var Tt={md5:32,md4:32,sha1:40,sha256:64,sha384:96,sha512:128,ripemd128:32,ripemd160:40,tiger128:32,tiger160:40,tiger192:48,crc32:8,crc32b:8};var wt=/[^A-Z0-9+\/=]/i,xt=/^[A-Z0-9_\-]*$/i,Bt={urlSafe:!1};function Dt(t,e){c(t),e=C(e,Bt);var r=t.length;if(e.urlSafe)return xt.test(t);if(r%4!=0||wt.test(t))return!1;e=t.indexOf("=");return-1===e||e===r-1||e===r-2&&"="===t[r-1]}var Ot={allow_primitives:!1};var Gt={ignore_whitespace:!1};var Ut={3:/^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,4:/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,5:/^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i,all:/^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i};var Pt=/^(?:4[0-9]{12}(?:[0-9]{3,6})?|5[1-5][0-9]{14}|(222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[01][0-9]|2720)[0-9]{12}|6(?:011|5[0-9][0-9])[0-9]{12,15}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11}|6[27][0-9]{14})$/;var Kt={ES:function(t){c(t);var e={X:0,Y:1,Z:2},r=t.trim().toUpperCase();if(!/^[0-9X-Z][0-9]{7}[TRWAGMYFPDXBNJZSQVHLCKE]$/.test(r))return!1;t=r.slice(0,-1).replace(/[X,Y,Z]/g,function(t){return e[t]});return r.endsWith(["T","R","W","A","G","M","Y","F","P","D","X","B","N","J","Z","S","Q","V","H","L","C","K","E"][t%23])},IN:function(t){var r=[[0,1,2,3,4,5,6,7,8,9],[1,2,3,4,0,6,7,8,9,5],[2,3,4,0,1,7,8,9,5,6],[3,4,0,1,2,8,9,5,6,7],[4,0,1,2,3,9,5,6,7,8],[5,9,8,7,6,0,4,3,2,1],[6,5,9,8,7,1,0,4,3,2],[7,6,5,9,8,2,1,0,4,3],[8,7,6,5,9,3,2,1,0,4],[9,8,7,6,5,4,3,2,1,0]],n=[[0,1,2,3,4,5,6,7,8,9],[1,5,7,6,2,8,3,0,9,4],[5,8,0,3,7,9,6,1,4,2],[8,9,1,6,0,4,3,5,2,7],[9,4,5,3,1,2,6,8,7,0],[4,2,8,6,5,7,3,9,0,1],[2,7,9,3,8,0,6,4,1,5],[7,0,4,6,9,1,3,2,5,8]],t=t.trim();if(!/^[1-9]\d{3}\s?\d{4}\s?\d{4}$/.test(t))return!1;var i=0;return t.replace(/\s/g,"").split("").map(Number).reverse().forEach(function(t,e){i=r[i][n[e%8][t]]}),0===i},IT:function(t){return 9===t.length&&("CA00000AA"!==t&&-1new Date)&&(t.getFullYear()===e&&t.getMonth()===r-1&&t.getDate()===n)}function o(t){return function(t){for(var e=t.substring(0,17),r=0,n=0;n<17;n++)r+=parseInt(e.charAt(n),10)*parseInt(a[n],10);return s[r%11]}(t)===t.charAt(17).toUpperCase()}var e,r=["11","12","13","14","15","21","22","23","31","32","33","34","35","36","37","41","42","43","44","45","46","50","51","52","53","54","61","62","63","64","65","71","81","82","91"],a=["7","9","10","5","8","4","2","1","6","3","7","9","10","5","8","4","2"],s=["1","0","X","9","8","7","6","5","4","3","2"];return!!/^\d{15}|(\d{17}(\d|x|X))$/.test(e=t)&&(15===e.length?function(t){var e=/^[1-9]\d{7}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}$/.test(t);if(!e)return!1;var r=t.substring(0,2);if(!(e=n(r)))return!1;t="19".concat(t.substring(6,12));return!!(e=i(t))}:function(t){var e=/^[1-9]\d{5}[1-9]\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}(\d|x|X)$/.test(t);if(!e)return!1;var r=t.substring(0,2);if(!(e=n(r)))return!1;r=t.substring(6,14);return!!(e=i(r))&&o(t)})(e)},"zh-TW":function(t){var n={A:10,B:11,C:12,D:13,E:14,F:15,G:16,H:17,I:34,J:18,K:19,L:20,M:21,N:22,O:35,P:23,Q:24,R:25,S:26,T:27,U:28,V:29,W:32,X:30,Y:31,Z:33},t=t.trim().toUpperCase();return!!/^[A-Z][0-9]{9}$/.test(t)&&Array.from(t).reduce(function(t,e,r){if(0!==r)return 9===r?(10-t%10-Number(e))%10==0:t+Number(e)*(9-r);e=n[e];return e%10*9+Math.floor(e/10)},0)}};var Ht=8,kt=/^(\d{8}|\d{13})$/;function zt(r){var t=10-r.slice(0,-1).split("").map(function(t,e){return Number(t)*(t=r.length,e=e,t===Ht?e%2==0?3:1:e%2==0?1:3)}).reduce(function(t,e){return t+e},0)%10;return t<10?t:0}var Yt=/^[A-Z]{2}[0-9A-Z]{9}[0-9]$/;var Vt=/^(?:[0-9]{9}X|[0-9]{10})$/,Wt=/^(?:[0-9]{13})$/,jt=[1,3];var Jt={andover:["10","12"],atlanta:["60","67"],austin:["50","53"],brookhaven:["01","02","03","04","05","06","11","13","14","16","21","22","23","25","34","51","52","54","55","56","57","58","59","65"],cincinnati:["30","32","35","36","37","38","61"],fresno:["15","24"],internet:["20","26","27","45","46","47"],kansas:["40","44"],memphis:["94","95"],ogden:["80","90"],philadelphia:["33","39","41","42","43","46","48","62","63","64","66","68","71","72","73","74","75","76","77","81","82","83","84","85","86","87","88","91","92","93","98","99"],sba:["31"]};var Xt={"en-US":/^\d{2}[- ]{0,1}\d{7}$/},qt={"en-US":function(t){return-1!==function(){var t,e=[];for(t in Jt)Jt.hasOwnProperty(t)&&e.push.apply(e,r(Jt[t]));return e}().indexOf(t.substr(0,2))}};var Qt={"am-AM":/^(\+?374|0)((10|[9|7][0-9])\d{6}$|[2-4]\d{7}$)/,"ar-AE":/^((\+?971)|0)?5[024568]\d{7}$/,"ar-BH":/^(\+?973)?(3|6)\d{7}$/,"ar-DZ":/^(\+?213|0)(5|6|7)\d{8}$/,"ar-LB":/^(\+?961)?((3|81)\d{6}|7\d{7})$/,"ar-EG":/^((\+?20)|0)?1[0125]\d{8}$/,"ar-IQ":/^(\+?964|0)?7[0-9]\d{8}$/,"ar-JO":/^(\+?962|0)?7[789]\d{7}$/,"ar-KW":/^(\+?965)[569]\d{7}$/,"ar-LY":/^((\+?218)|0)?(9[1-6]\d{7}|[1-8]\d{7,9})$/,"ar-SA":/^(!?(\+?966)|0)?5\d{8}$/,"ar-SY":/^(!?(\+?963)|0)?9\d{8}$/,"ar-TN":/^(\+?216)?[2459]\d{7}$/,"az-AZ":/^(\+994|0)(5[015]|7[07]|99)\d{7}$/,"bs-BA":/^((((\+|00)3876)|06))((([0-3]|[5-6])\d{6})|(4\d{7}))$/,"be-BY":/^(\+?375)?(24|25|29|33|44)\d{7}$/,"bg-BG":/^(\+?359|0)?8[789]\d{7}$/,"bn-BD":/^(\+?880|0)1[13456789][0-9]{8}$/,"cs-CZ":/^(\+?420)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/,"da-DK":/^(\+?45)?\s?\d{2}\s?\d{2}\s?\d{2}\s?\d{2}$/,"de-DE":/^(\+49)?0?[1|3]([0|5][0-45-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/,"de-AT":/^(\+43|0)\d{1,4}\d{3,12}$/,"de-CH":/^(\+41|0)(7[5-9])\d{1,7}$/,"el-GR":/^(\+?30|0)?(69\d{8})$/,"en-AU":/^(\+?61|0)4\d{8}$/,"en-GB":/^(\+?44|0)7\d{9}$/,"en-GG":/^(\+?44|0)1481\d{6}$/,"en-GH":/^(\+233|0)(20|50|24|54|27|57|26|56|23|28)\d{7}$/,"en-HK":/^(\+?852[-\s]?)?[456789]\d{3}[-\s]?\d{4}$/,"en-MO":/^(\+?853[-\s]?)?[6]\d{3}[-\s]?\d{4}$/,"en-IE":/^(\+?353|0)8[356789]\d{7}$/,"en-IN":/^(\+?91|0)?[6789]\d{9}$/,"en-KE":/^(\+?254|0)(7|1)\d{8}$/,"en-MT":/^(\+?356|0)?(99|79|77|21|27|22|25)[0-9]{6}$/,"en-MU":/^(\+?230|0)?\d{8}$/,"en-NG":/^(\+?234|0)?[789]\d{9}$/,"en-NZ":/^(\+?64|0)[28]\d{7,9}$/,"en-PK":/^((\+92)|(0092))-{0,1}\d{3}-{0,1}\d{7}$|^\d{11}$|^\d{4}-\d{7}$/,"en-PH":/^(09|\+639)\d{9}$/,"en-RW":/^(\+?250|0)?[7]\d{8}$/,"en-SG":/^(\+65)?[689]\d{7}$/,"en-SL":/^(?:0|94|\+94)?(7(0|1|2|5|6|7|8)( |-)?\d)\d{6}$/,"en-TZ":/^(\+?255|0)?[67]\d{8}$/,"en-UG":/^(\+?256|0)?[7]\d{8}$/,"en-US":/^((\+1|1)?( |-)?)?(\([2-9][0-9]{2}\)|[2-9][0-9]{2})( |-)?([2-9][0-9]{2}( |-)?[0-9]{4})$/,"en-ZA":/^(\+?27|0)\d{9}$/,"en-ZM":/^(\+?26)?09[567]\d{7}$/,"en-ZW":/^(\+263)[0-9]{9}$/,"es-AR":/^\+?549(11|[2368]\d)\d{8}$/,"es-BO":/^(\+?591)?(6|7)\d{7}$/,"es-CO":/^(\+?57)?([1-8]{1}|3[0-9]{2})?[2-9]{1}\d{6}$/,"es-CL":/^(\+?56|0)[2-9]\d{1}\d{7}$/,"es-CR":/^(\+506)?[2-8]\d{7}$/,"es-DO":/^(\+?1)?8[024]9\d{7}$/,"es-EC":/^(\+?593|0)([2-7]|9[2-9])\d{7}$/,"es-ES":/^(\+?34)?[6|7]\d{8}$/,"es-PE":/^(\+?51)?9\d{8}$/,"es-MX":/^(\+?52)?(1|01)?\d{10,11}$/,"es-PA":/^(\+?507)\d{7,8}$/,"es-PY":/^(\+?595|0)9[9876]\d{7}$/,"es-UY":/^(\+598|0)9[1-9][\d]{6}$/,"et-EE":/^(\+?372)?\s?(5|8[1-4])\s?([0-9]\s?){6,7}$/,"fa-IR":/^(\+?98[\-\s]?|0)9[0-39]\d[\-\s]?\d{3}[\-\s]?\d{4}$/,"fi-FI":/^(\+?358|0)\s?(4(0|1|2|4|5|6)?|50)\s?(\d\s?){4,8}\d$/,"fj-FJ":/^(\+?679)?\s?\d{3}\s?\d{4}$/,"fo-FO":/^(\+?298)?\s?\d{2}\s?\d{2}\s?\d{2}$/,"fr-FR":/^(\+?33|0)[67]\d{8}$/,"fr-GF":/^(\+?594|0|00594)[67]\d{8}$/,"fr-GP":/^(\+?590|0|00590)[67]\d{8}$/,"fr-MQ":/^(\+?596|0|00596)[67]\d{8}$/,"fr-RE":/^(\+?262|0|00262)[67]\d{8}$/,"he-IL":/^(\+972|0)([23489]|5[012345689]|77)[1-9]\d{6}$/,"hu-HU":/^(\+?36)(20|30|70)\d{7}$/,"id-ID":/^(\+?62|0)8(1[123456789]|2[1238]|3[1238]|5[12356789]|7[78]|9[56789]|8[123456789])([\s?|\d]{5,11})$/,"it-IT":/^(\+?39)?\s?3\d{2} ?\d{6,7}$/,"ja-JP":/^(\+81[ \-]?(\(0\))?|0)[6789]0[ \-]?\d{4}[ \-]?\d{4}$/,"ka-GE":/^(\+?995)?(5|79)\d{7}$/,"kk-KZ":/^(\+?7|8)?7\d{9}$/,"kl-GL":/^(\+?299)?\s?\d{2}\s?\d{2}\s?\d{2}$/,"ko-KR":/^((\+?82)[ \-]?)?0?1([0|1|6|7|8|9]{1})[ \-]?\d{3,4}[ \-]?\d{4}$/,"lt-LT":/^(\+370|8)\d{8}$/,"ms-MY":/^(\+?6?01){1}(([0145]{1}(\-|\s)?\d{7,8})|([236789]{1}(\s|\-)?\d{7}))$/,"nb-NO":/^(\+?47)?[49]\d{7}$/,"ne-NP":/^(\+?977)?9[78]\d{8}$/,"nl-BE":/^(\+?32|0)4?\d{8}$/,"nl-NL":/^(((\+|00)?31\(0\))|((\+|00)?31)|0)6{1}\d{8}$/,"nn-NO":/^(\+?47)?[49]\d{7}$/,"pl-PL":/^(\+?48)? ?[5-8]\d ?\d{3} ?\d{2} ?\d{2}$/,"pt-BR":/(?=^(\+?5{2}\-?|0)[1-9]{2}\-?\d{4}\-?\d{4}$)(^(\+?5{2}\-?|0)[1-9]{2}\-?[6-9]{1}\d{3}\-?\d{4}$)|(^(\+?5{2}\-?|0)[1-9]{2}\-?9[6-9]{1}\d{3}\-?\d{4}$)/,"pt-PT":/^(\+?351)?9[1236]\d{7}$/,"ro-RO":/^(\+?4?0)\s?7\d{2}(\/|\s|\.|\-)?\d{3}(\s|\.|\-)?\d{3}$/,"ru-RU":/^(\+?7|8)?9\d{9}$/,"sl-SI":/^(\+386\s?|0)(\d{1}\s?\d{3}\s?\d{2}\s?\d{2}|\d{2}\s?\d{3}\s?\d{3})$/,"sk-SK":/^(\+?421)? ?[1-9][0-9]{2} ?[0-9]{3} ?[0-9]{3}$/,"sr-RS":/^(\+3816|06)[- \d]{5,9}$/,"sv-SE":/^(\+?46|0)[\s\-]?7[\s\-]?[02369]([\s\-]?\d){7}$/,"th-TH":/^(\+66|66|0)\d{9}$/,"tr-TR":/^(\+?90|0)?5\d{9}$/,"uk-UA":/^(\+?38|8)?0\d{9}$/,"uz-UZ":/^(\+?998)?(6[125-79]|7[1-69]|88|9\d)\d{7}$/,"vi-VN":/^(\+?84|0)((3([2-9]))|(5([2689]))|(7([0|6-9]))|(8([1-6|89]))|(9([0-9])))([0-9]{7})$/,"zh-CN":/^((\+|00)86)?1([3568][0-9]|4[579]|6[67]|7[01235678]|9[012356789])[0-9]{8}$/,"zh-TW":/^(\+?886\-?|0)?9\d{8}$/};Qt["en-CA"]=Qt["en-US"],Qt["fr-BE"]=Qt["nl-BE"],Qt["zh-HK"]=Qt["en-HK"],Qt["zh-MO"]=Qt["en-MO"];var te=Object.keys(Qt),ee=/^(0x)[0-9a-f]{40}$/i;var re={symbol:"$",require_symbol:!1,allow_space_after_symbol:!1,symbol_after_digits:!1,allow_negatives:!0,parens_for_negatives:!1,negative_sign_before_digits:!1,negative_sign_after_digits:!1,allow_negative_sign_placeholder:!1,thousands_separator:",",decimal_separator:".",allow_decimal:!0,require_decimal:!1,digits_after_decimal:[2],allow_space_after_digits:!1};var ne=/^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/;var ie=/^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-3])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;var oe=/([01][0-9]|2[0-3])/,ae=/[0-5][0-9]/,se=new RegExp("[-+]".concat(oe.source,":").concat(ae.source)),se=new RegExp("([zZ]|".concat(se.source,")")),oe=new RegExp("".concat(oe.source,":").concat(ae.source,":").concat(/([0-5][0-9]|60)/.source).concat(/(\.[0-9]+)?/.source)),ae=new RegExp("".concat(/[0-9]{4}/.source,"-").concat(/(0[1-9]|1[0-2])/.source,"-").concat(/([12]\d|0[1-9]|3[01])/.source)),oe=new RegExp("".concat(oe.source).concat(se.source)),le=new RegExp("".concat(ae.source,"[ tT]").concat(oe.source));var ue=["AD","AE","AF","AG","AI","AL","AM","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"];var de=["AFG","ALA","ALB","DZA","ASM","AND","AGO","AIA","ATA","ATG","ARG","ARM","ABW","AUS","AUT","AZE","BHS","BHR","BGD","BRB","BLR","BEL","BLZ","BEN","BMU","BTN","BOL","BES","BIH","BWA","BVT","BRA","IOT","BRN","BGR","BFA","BDI","KHM","CMR","CAN","CPV","CYM","CAF","TCD","CHL","CHN","CXR","CCK","COL","COM","COG","COD","COK","CRI","CIV","HRV","CUB","CUW","CYP","CZE","DNK","DJI","DMA","DOM","ECU","EGY","SLV","GNQ","ERI","EST","ETH","FLK","FRO","FJI","FIN","FRA","GUF","PYF","ATF","GAB","GMB","GEO","DEU","GHA","GIB","GRC","GRL","GRD","GLP","GUM","GTM","GGY","GIN","GNB","GUY","HTI","HMD","VAT","HND","HKG","HUN","ISL","IND","IDN","IRN","IRQ","IRL","IMN","ISR","ITA","JAM","JPN","JEY","JOR","KAZ","KEN","KIR","PRK","KOR","KWT","KGZ","LAO","LVA","LBN","LSO","LBR","LBY","LIE","LTU","LUX","MAC","MKD","MDG","MWI","MYS","MDV","MLI","MLT","MHL","MTQ","MRT","MUS","MYT","MEX","FSM","MDA","MCO","MNG","MNE","MSR","MAR","MOZ","MMR","NAM","NRU","NPL","NLD","NCL","NZL","NIC","NER","NGA","NIU","NFK","MNP","NOR","OMN","PAK","PLW","PSE","PAN","PNG","PRY","PER","PHL","PCN","POL","PRT","PRI","QAT","REU","ROU","RUS","RWA","BLM","SHN","KNA","LCA","MAF","SPM","VCT","WSM","SMR","STP","SAU","SEN","SRB","SYC","SLE","SGP","SXM","SVK","SVN","SLB","SOM","ZAF","SGS","SSD","ESP","LKA","SDN","SUR","SJM","SWZ","SWE","CHE","SYR","TWN","TJK","TZA","THA","TLS","TGO","TKL","TON","TTO","TUN","TUR","TKM","TCA","TUV","UGA","UKR","ARE","GBR","USA","UMI","URY","UZB","VUT","VEN","VNM","VGB","VIR","WLF","ESH","YEM","ZMB","ZWE"];var ce=/^[A-Z2-7]+=*$/;var fe=/^[A-HJ-NP-Za-km-z1-9]*$/;var $e=/^[a-z]+\/[a-z0-9\-\+]+$/i,Ae=/^[a-z\-]+=[a-z0-9\-]+$/i,pe=/^[a-z0-9!\$&'\(\)\*\+,;=\-\._~:@\/\?%\s]*$/i;var ge=/^magnet:\?xt=urn:[a-z0-9]+:[a-z0-9]{32,40}&dn=.+&tr=.+$/i;var he=/^(application|audio|font|image|message|model|multipart|text|video)\/[a-zA-Z0-9\.\-\+]{1,100}$/i,me=/^text\/[a-zA-Z0-9\.\-\+]{1,100};\s?charset=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?$/i,ve=/^multipart\/[a-zA-Z0-9\.\-\+]{1,100}(;\s?(boundary|charset)=("[a-zA-Z0-9\.\-\+\s]{0,70}"|[a-zA-Z0-9\.\-\+]{0,70})(\s?\([a-zA-Z0-9\.\-\+\s]{1,20}\))?){0,2}$/i;var Ze=/^\(?[+-]?(90(\.0+)?|[1-8]?\d(\.\d+)?)$/,Se=/^\s?[+-]?(180(\.0+)?|1[0-7]\d(\.\d+)?|\d{1,2}(\.\d+)?)\)?$/,_e=/^(([1-8]?\d)\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|90\D+0\D+0)\D+[NSns]?$/i,Fe=/^\s*([1-7]?\d{1,2}\D+([1-5]?\d|60)\D+([1-5]?\d|60)(\.\d+)?|180\D+0\D+0)\D+[EWew]?$/i,Ee={checkDMS:!1};var se=/^\d{4}$/,ae=/^\d{5}$/,oe=/^\d{6}$/,Re={AD:/^AD\d{3}$/,AT:se,AU:se,AZ:/^AZ\d{4}$/,BE:se,BG:se,BR:/^\d{5}-\d{3}$/,BY:/2[1-4]{1}\d{4}$/,CA:/^[ABCEGHJKLMNPRSTVXY]\d[ABCEGHJ-NPRSTV-Z][\s\-]?\d[ABCEGHJ-NPRSTV-Z]\d$/i,CH:se,CZ:/^\d{3}\s?\d{2}$/,DE:ae,DK:se,DO:ae,DZ:ae,EE:ae,ES:/^(5[0-2]{1}|[0-4]{1}\d{1})\d{3}$/,FI:ae,FR:/^\d{2}\s?\d{3}$/,GB:/^(gir\s?0aa|[a-z]{1,2}\d[\da-z]?\s?(\d[a-z]{2})?)$/i,GR:/^\d{3}\s?\d{2}$/,HR:/^([1-5]\d{4}$)/,HT:/^HT\d{4}$/,HU:se,ID:ae,IE:/^(?!.*(?:o))[A-z]\d[\dw]\s\w{4}$/i,IL:/^(\d{5}|\d{7})$/,IN:/^((?!10|29|35|54|55|65|66|86|87|88|89)[1-9][0-9]{5})$/,IS:/^\d{3}$/,IT:ae,JP:/^\d{3}\-\d{4}$/,KE:ae,LI:/^(948[5-9]|949[0-7])$/,LT:/^LT\-\d{5}$/,LU:se,LV:/^LV\-\d{4}$/,MX:ae,MT:/^[A-Za-z]{3}\s{0,1}\d{4}$/,NL:/^\d{4}\s?[a-z]{2}$/i,NO:se,NP:/^(10|21|22|32|33|34|44|45|56|57)\d{3}$|^(977)$/i,NZ:se,PL:/^\d{2}\-\d{3}$/,PR:/^00[679]\d{2}([ -]\d{4})?$/,PT:/^\d{4}\-\d{3}?$/,RO:oe,RU:oe,SA:ae,SE:/^[1-9]\d{2}\s?\d{2}$/,SI:se,SK:/^\d{3}\s?\d{2}$/,TH:ae,TN:se,TW:/^\d{3}(\d{2})?$/,UA:ae,US:/^\d{5}(-\d{4})?$/,ZA:se,ZM:ae},ae=Object.keys(Re);function Ie(t,e){c(t);e=e?new RegExp("^[".concat(e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"]+"),"g"):/^\s+/g;return t.replace(e,"")}function Ce(t,e){c(t);e=e?new RegExp("[".concat(e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"]+$"),"g"):/\s+$/g;return t.replace(e,"")}function Le(t,e){return c(t),t.replace(new RegExp("[".concat(e,"]+"),"g"),"")}var Me={all_lowercase:!0,gmail_lowercase:!0,gmail_remove_dots:!0,gmail_remove_subaddress:!0,gmail_convert_googlemaildotcom:!0,outlookdotcom_lowercase:!0,outlookdotcom_remove_subaddress:!0,yahoo_lowercase:!0,yahoo_remove_subaddress:!0,yandex_lowercase:!0,icloud_lowercase:!0,icloud_remove_subaddress:!0},be=["icloud.com","me.com"],Ne=["hotmail.at","hotmail.be","hotmail.ca","hotmail.cl","hotmail.co.il","hotmail.co.nz","hotmail.co.th","hotmail.co.uk","hotmail.com","hotmail.com.ar","hotmail.com.au","hotmail.com.br","hotmail.com.gr","hotmail.com.mx","hotmail.com.pe","hotmail.com.tr","hotmail.com.vn","hotmail.cz","hotmail.de","hotmail.dk","hotmail.es","hotmail.fr","hotmail.hu","hotmail.id","hotmail.ie","hotmail.in","hotmail.it","hotmail.jp","hotmail.kr","hotmail.lv","hotmail.my","hotmail.ph","hotmail.pt","hotmail.sa","hotmail.sg","hotmail.sk","live.be","live.co.uk","live.com","live.com.ar","live.com.mx","live.de","live.es","live.eu","live.fr","live.it","live.nl","msn.com","outlook.at","outlook.be","outlook.cl","outlook.co.il","outlook.co.nz","outlook.co.th","outlook.com","outlook.com.ar","outlook.com.au","outlook.com.br","outlook.com.gr","outlook.com.pe","outlook.com.tr","outlook.com.vn","outlook.cz","outlook.de","outlook.dk","outlook.es","outlook.fr","outlook.hu","outlook.id","outlook.ie","outlook.in","outlook.it","outlook.jp","outlook.kr","outlook.lv","outlook.my","outlook.ph","outlook.pt","outlook.sa","outlook.sg","outlook.sk","passport.com"],ye=["rocketmail.com","yahoo.ca","yahoo.co.uk","yahoo.com","yahoo.de","yahoo.fr","yahoo.in","yahoo.it","ymail.com"],Te=["yandex.ru","yandex.ua","yandex.kz","yandex.com","yandex.by","ya.ru"];function we(t){return 1]/.test(t)){if(!e)return;if(!(t.split('"').length===t.split('\\"').length))return}return 1}}(i))return!1}else if(e.require_display_name)return!1}if(!e.ignore_max_length&&254]/.test(t))return!1;if(0===t.indexOf("mailto:"))return!1;if((e=C(e,K)).validate_length&&2083<=t.length)return!1;var r,n,i,o=t.split("#");if(1<(o=(t=(o=(t=o.shift()).split("?")).shift()).split("://")).length){if(i=o.shift().toLowerCase(),e.require_valid_protocol&&-1===e.protocols.indexOf(i))return!1}else{if(e.require_protocol)return!1;if("//"===t.substr(0,2)){if(!e.allow_protocol_relative_urls)return!1;o[0]=t.substr(2)}}if(""===(t=o.join("://")))return!1;if(""===(t=(o=t.split("/")).shift())&&!e.require_host)return!0;if(1<(o=t.split("@")).length){if(e.disallow_auth)return!1;if(-1===(a=o.shift()).indexOf(":")||0<=a.indexOf(":")&&2/g,">").replace(/\//g,"/").replace(/\\/g,"\").replace(/`/g,"`")},unescape:function(t){return c(t),t.replace(/&/g,"&").replace(/"/g,'"').replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">").replace(///g,"/").replace(/\/g,"\\").replace(/`/g,"`")},stripLow:function(t,e){return c(t),Le(t,e?"\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F":"\\x00-\\x1F\\x7F")},whitelist:function(t,e){return c(t),t.replace(new RegExp("[^".concat(e,"]+"),"g"),"")},blacklist:Le,isWhitelisted:function(t,e){c(t);for(var r=t.length-1;0<=r;r--)if(-1===e.indexOf(t[r]))return!1;return!0},normalizeEmail:function(t,e){e=C(e,Me);var r=t.split("@"),t=r.pop();if((r=[r.join("@"),t])[1]=r[1].toLowerCase(),"gmail.com"===r[1]||"googlemail.com"===r[1]){if(e.gmail_remove_subaddress&&(r[0]=r[0].split("+")[0]),e.gmail_remove_dots&&(r[0]=r[0].replace(/\.+/g,we)),!r[0].length)return!1;(e.all_lowercase||e.gmail_lowercase)&&(r[0]=r[0].toLowerCase()),r[1]=e.gmail_convert_googlemaildotcom?"gmail.com":r[1]}else if(0<=be.indexOf(r[1])){if(e.icloud_remove_subaddress&&(r[0]=r[0].split("+")[0]),!r[0].length)return!1;(e.all_lowercase||e.icloud_lowercase)&&(r[0]=r[0].toLowerCase())}else if(0<=Ne.indexOf(r[1])){if(e.outlookdotcom_remove_subaddress&&(r[0]=r[0].split("+")[0]),!r[0].length)return!1;(e.all_lowercase||e.outlookdotcom_lowercase)&&(r[0]=r[0].toLowerCase())}else if(0<=ye.indexOf(r[1])){if(e.yahoo_remove_subaddress&&(t=r[0].split("-"),r[0]=1=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,o=!0,a=!1;return{s:function(){r=t[Symbol.iterator]()},n:function(){var t=r.next();return o=t.done,t},e:function(t){a=!0,i=t},f:function(){try{o||null==r.return||r.return()}finally{if(a)throw i}}}}(function(t,e){for(var r=[],n=Math.min(t.length,e.length),i=0;i