init source
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2010 Chris O'Hara <cohara87@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
# express-validator
|
||||
|
||||
[](https://www.npmjs.com/package/express-validator)
|
||||
[](http://travis-ci.org/express-validator/express-validator)
|
||||
[](https://david-dm.org/express-validator/express-validator)
|
||||
[](https://coveralls.io/github/express-validator/express-validator?branch=master)
|
||||
|
||||
An [express.js](https://github.com/visionmedia/express) middleware for
|
||||
[validator](https://github.com/validatorjs/validator.js).
|
||||
|
||||
- [Installation](#installation)
|
||||
- [Documentation](#documentation)
|
||||
- [Changelog](#changelog)
|
||||
- [License](#license)
|
||||
|
||||
## Installation
|
||||
|
||||
```
|
||||
npm install express-validator
|
||||
```
|
||||
|
||||
Also make sure that you have Node.js 8 or newer in order to use it.
|
||||
|
||||
## Documentation
|
||||
|
||||
Please refer to the documentation website on https://express-validator.github.io.
|
||||
|
||||
## Changelog
|
||||
|
||||
Check the [GitHub Releases page](https://github.com/express-validator/express-validator/releases).
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
+1
@@ -0,0 +1 @@
|
||||
export { Location, Meta, CustomValidator, DynamicMessageCreator, ValidationError, ValidationChain, check, body, cookie, header, param, query, buildCheckFunction, checkSchema, Schema, ValidationSchema, ParamSchema, ValidationParamSchema, oneOf, OneOfCustomMessageBuilder, validationResult, ErrorFormatter, Result, ResultFactory, } from '../src';
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var src_1 = require("../src");
|
||||
// middleware/validation-chain-builders
|
||||
Object.defineProperty(exports, "check", { enumerable: true, get: function () { return src_1.check; } });
|
||||
Object.defineProperty(exports, "body", { enumerable: true, get: function () { return src_1.body; } });
|
||||
Object.defineProperty(exports, "cookie", { enumerable: true, get: function () { return src_1.cookie; } });
|
||||
Object.defineProperty(exports, "header", { enumerable: true, get: function () { return src_1.header; } });
|
||||
Object.defineProperty(exports, "param", { enumerable: true, get: function () { return src_1.param; } });
|
||||
Object.defineProperty(exports, "query", { enumerable: true, get: function () { return src_1.query; } });
|
||||
Object.defineProperty(exports, "buildCheckFunction", { enumerable: true, get: function () { return src_1.buildCheckFunction; } });
|
||||
// middleware/schema
|
||||
Object.defineProperty(exports, "checkSchema", { enumerable: true, get: function () { return src_1.checkSchema; } });
|
||||
// middleware/one-of
|
||||
Object.defineProperty(exports, "oneOf", { enumerable: true, get: function () { return src_1.oneOf; } });
|
||||
// validation-result
|
||||
Object.defineProperty(exports, "validationResult", { enumerable: true, get: function () { return src_1.validationResult; } });
|
||||
Object.defineProperty(exports, "Result", { enumerable: true, get: function () { return src_1.Result; } });
|
||||
console.warn('express-validator: requires to express-validator/check are deprecated.' +
|
||||
'You should just use require("express-validator") instead.');
|
||||
+160
@@ -0,0 +1,160 @@
|
||||
declare module 'validator' {
|
||||
export function contains(
|
||||
str: string,
|
||||
elem: any,
|
||||
options?: import('../src/options').ContainsOptions,
|
||||
): boolean;
|
||||
export function equals(str: string, comparison: string): boolean;
|
||||
export function isAfter(str: string, date?: string): boolean;
|
||||
export function isAlpha(
|
||||
str: string,
|
||||
locale?: import('../src/options').AlphaLocale,
|
||||
options?: import('../src/options').IsAlphaOptions,
|
||||
): boolean;
|
||||
export function isAlphanumeric(
|
||||
str: string,
|
||||
locale?: import('../src/options').AlphanumericLocale,
|
||||
options?: import('../src/options').IsAlphanumericOptions,
|
||||
): boolean;
|
||||
export function isAscii(str: string): boolean;
|
||||
export function isBase32(str: string): boolean;
|
||||
export function isBase58(str: string): boolean;
|
||||
export function isBase64(
|
||||
str: string,
|
||||
options?: import('../src/options').IsBase64Options,
|
||||
): boolean;
|
||||
export function isBefore(str: string, date?: string): boolean;
|
||||
export function isBIC(str: string): boolean;
|
||||
export function isBoolean(
|
||||
str: string,
|
||||
options?: import('../src/options').IsBooleanOptions,
|
||||
): boolean;
|
||||
export function isBtcAddress(str: string): boolean;
|
||||
export function isByteLength(
|
||||
str: string,
|
||||
options: import('../src/options').MinMaxOptions,
|
||||
): boolean;
|
||||
export function isCreditCard(str: string): boolean;
|
||||
export function isCurrency(
|
||||
str: string,
|
||||
options?: import('../src/options').IsCurrencyOptions,
|
||||
): boolean;
|
||||
export function isDataURI(str: string): boolean;
|
||||
export function isDate(str: string, options?: import('../src/options').IsDateOptions): boolean;
|
||||
export function isDecimal(
|
||||
str: string,
|
||||
options?: import('../src/options').IsDecimalOptions,
|
||||
): boolean;
|
||||
export function isDivisibleBy(str: string, number: number): boolean;
|
||||
export function isEAN(str: string): boolean;
|
||||
export function isEmail(str: string, options?: import('../src/options').IsEmailOptions): boolean;
|
||||
export function isEmpty(str: string, options?: import('../src/options').IsEmptyOptions): boolean;
|
||||
export function isEthereumAddress(str: string): boolean;
|
||||
export function isFQDN(str: string, options?: import('../src/options').IsFQDNOptions): boolean;
|
||||
export function isFloat(str: string, options?: import('../src/options').IsFloatOptions): boolean;
|
||||
export function isFullWidth(str: string): boolean;
|
||||
export function isHalfWidth(str: string): boolean;
|
||||
export function isHash(str: string, algorithm: import('../src/options').HashAlgorithm): boolean;
|
||||
export function isHexColor(str: string): boolean;
|
||||
export function isHexadecimal(str: string): boolean;
|
||||
export function isHSL(str: string): boolean;
|
||||
export function isIBAN(str: string): boolean;
|
||||
export function isIdentityCard(
|
||||
str: string,
|
||||
locale?: import('../src/options').IdentityCardLocale,
|
||||
): boolean;
|
||||
export function isIMEI(str: string, options?: import('../src/options').IsIMEIOptions): boolean;
|
||||
export function isIP(str: string, version?: import('../src/options').IPVersion): boolean;
|
||||
export function isIPRange(str: string, version?: import('../src/options').IPVersion): boolean;
|
||||
export function isISBN(str: string, version?: number): boolean;
|
||||
export function isISSN(str: string, options?: import('../src/options').IsISSNOptions): boolean;
|
||||
export function isISIN(str: string): boolean;
|
||||
export function isISO8601(
|
||||
str: string,
|
||||
options?: import('../src/options').IsISO8601Options,
|
||||
): boolean;
|
||||
export function isISO31661Alpha2(str: string): boolean;
|
||||
export function isISO31661Alpha3(str: string): boolean;
|
||||
export function isISO4217(str: string): boolean;
|
||||
export function isISRC(str: string): boolean;
|
||||
export function isIn(str: string, values: readonly any[]): boolean;
|
||||
export function isInt(str: string, options?: import('../src/options').IsIntOptions): boolean;
|
||||
export function isJSON(str: string, options?: import('../src/options').IsJSONOptions): boolean;
|
||||
export function isJWT(str: string): boolean;
|
||||
export function isLatLong(
|
||||
str: string,
|
||||
options?: import('../src/options').IsLatLongOptions,
|
||||
): boolean;
|
||||
export function isLength(str: string, options: import('../src/options').MinMaxOptions): boolean;
|
||||
export function isLicensePlate(
|
||||
str: string,
|
||||
locale: import('../src/options').IsLicensePlateLocale,
|
||||
): boolean;
|
||||
export function isLocale(str: string): boolean;
|
||||
export function isLowercase(str: string): boolean;
|
||||
export function isMagnetURI(str: string): boolean;
|
||||
export function isMACAddress(
|
||||
str: string,
|
||||
options: import('../src/options').IsMACAddressOptions,
|
||||
): boolean;
|
||||
export function isMD5(str: string): boolean;
|
||||
export function isMimeType(str: string): boolean;
|
||||
export function isMobilePhone(
|
||||
str: string,
|
||||
locale:
|
||||
| import('../src/options').MobilePhoneLocale
|
||||
| readonly import('../src/options').MobilePhoneLocale[],
|
||||
options?: import('../src/options').IsMobilePhoneOptions,
|
||||
): boolean;
|
||||
export function isMongoId(str: string): boolean;
|
||||
export function isMultibyte(str: string): boolean;
|
||||
export function isNumeric(
|
||||
str: string,
|
||||
options?: import('../src/options').IsNumericOptions,
|
||||
): boolean;
|
||||
export function isOctal(str: string): boolean;
|
||||
export function isPassportNumber(
|
||||
str: string,
|
||||
countryCode?: import('../src/options').PassportCountryCode,
|
||||
): boolean;
|
||||
export function isPort(str: string): boolean;
|
||||
export function isPostalCode(
|
||||
str: string,
|
||||
locale: import('../src/options').PostalCodeLocale,
|
||||
): boolean;
|
||||
export function isRFC3339(str: string): boolean;
|
||||
export function isRgbColor(str: string, includePercentValues?: boolean): boolean;
|
||||
export function isSemVer(str: string): boolean;
|
||||
export function isSlug(str: string): boolean;
|
||||
export function isStrongPassword(
|
||||
str: string,
|
||||
options?: import('../src/options').IsStrongPasswordOptions,
|
||||
): boolean;
|
||||
export function isSurrogatePair(str: string): boolean;
|
||||
export function isTaxID(str: string, locale: import('../src/options').TaxIDLocale): boolean;
|
||||
export function isURL(str: string, options?: import('../src/options').IsURLOptions): boolean;
|
||||
export function isUUID(str: string, version?: import('../src/options').UUIDVersion): boolean;
|
||||
export function isUppercase(str: string): boolean;
|
||||
export function isVariableWidth(str: string): boolean;
|
||||
export function isVAT(str: string, countryCode: import('../src/options').VATCountryCode): boolean;
|
||||
export function isWhitelisted(str: string, chars: string | readonly string[]): boolean;
|
||||
export function matches(str: string, pattern: RegExp | string, modifiers?: string): boolean;
|
||||
|
||||
export function blacklist(str: string, chars: string): string;
|
||||
export function escape(str: string): string;
|
||||
export function unescape(str: string): string;
|
||||
export function ltrim(str: string, chars?: string): string;
|
||||
export function normalizeEmail(
|
||||
str: string,
|
||||
options?: import('../src/options').NormalizeEmailOptions,
|
||||
): string;
|
||||
export function rtrim(str: string, chars?: string): string;
|
||||
export function stripLow(str: string, keep_new_lines?: boolean): string;
|
||||
export function toBoolean(str: string, strict?: boolean): boolean;
|
||||
export function toDate(str: string): Date;
|
||||
export function toFloat(str: string): number;
|
||||
export function toInt(str: string, radix?: number): string;
|
||||
export function trim(str: string, chars?: string): string;
|
||||
export function whitelist(str: string, chars: string): string;
|
||||
export function toString(str: string): string;
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export { Location, Meta, CustomSanitizer, SanitizationChain, sanitize, sanitizeBody, sanitizeCookie, sanitizeParam, sanitizeQuery, buildSanitizeFunction, matchedData, MatchedDataOptions, } from '../src';
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var src_1 = require("../src");
|
||||
// middleware/sanitization-chain-builders
|
||||
Object.defineProperty(exports, "sanitize", { enumerable: true, get: function () { return src_1.sanitize; } });
|
||||
Object.defineProperty(exports, "sanitizeBody", { enumerable: true, get: function () { return src_1.sanitizeBody; } });
|
||||
Object.defineProperty(exports, "sanitizeCookie", { enumerable: true, get: function () { return src_1.sanitizeCookie; } });
|
||||
Object.defineProperty(exports, "sanitizeParam", { enumerable: true, get: function () { return src_1.sanitizeParam; } });
|
||||
Object.defineProperty(exports, "sanitizeQuery", { enumerable: true, get: function () { return src_1.sanitizeQuery; } });
|
||||
Object.defineProperty(exports, "buildSanitizeFunction", { enumerable: true, get: function () { return src_1.buildSanitizeFunction; } });
|
||||
// matched-data
|
||||
Object.defineProperty(exports, "matchedData", { enumerable: true, get: function () { return src_1.matchedData; } });
|
||||
console.warn('express-validator: requires to express-validator/filter are deprecated.' +
|
||||
'You should just use require("express-validator") instead.');
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
Copyright (c) 2018 Chris O'Hara <cohara87@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
+274
@@ -0,0 +1,274 @@
|
||||
# validator.js
|
||||
|
||||
[![NPM version][npm-image]][npm-url]
|
||||
[![CI][ci-image]][ci-url]
|
||||
[![Coverage][codecov-image]][codecov-url]
|
||||
[![Downloads][downloads-image]][npm-url]
|
||||
[](#backers)
|
||||
[](#sponsors)
|
||||
[](https://gitter.im/validatorjs/community)
|
||||
|
||||
A library of string validators and sanitizers.
|
||||
|
||||
## Strings only
|
||||
|
||||
**This library validates and sanitizes strings only.**
|
||||
|
||||
If you're not sure if your input is a string, coerce it using `input + ''`.
|
||||
Passing anything other than a string will result in an error.
|
||||
|
||||
## Installation and Usage
|
||||
|
||||
### Server-side usage
|
||||
|
||||
Install the library with `npm install validator`
|
||||
|
||||
#### No ES6
|
||||
|
||||
```javascript
|
||||
var validator = require('validator');
|
||||
|
||||
validator.isEmail('foo@bar.com'); //=> true
|
||||
```
|
||||
|
||||
#### ES6
|
||||
|
||||
```javascript
|
||||
import validator from 'validator';
|
||||
```
|
||||
|
||||
Or, import only a subset of the library:
|
||||
|
||||
```javascript
|
||||
import isEmail from 'validator/lib/isEmail';
|
||||
```
|
||||
|
||||
#### Tree-shakeable ES imports
|
||||
|
||||
```javascript
|
||||
import isEmail from 'validator/es/lib/isEmail';
|
||||
```
|
||||
|
||||
### Client-side usage
|
||||
|
||||
The library can be loaded either as a standalone script, or through an [AMD][amd]-compatible loader
|
||||
|
||||
```html
|
||||
<script type="text/javascript" src="validator.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
validator.isEmail('foo@bar.com'); //=> true
|
||||
</script>
|
||||
```
|
||||
|
||||
The library can also be installed through [bower][bower]
|
||||
|
||||
```bash
|
||||
$ bower install validator-js
|
||||
```
|
||||
|
||||
CDN
|
||||
|
||||
```html
|
||||
<script src="https://unpkg.com/validator@latest/validator.min.js"></script>
|
||||
```
|
||||
|
||||
## Contributors
|
||||
|
||||
[Become a backer](https://opencollective.com/validatorjs#backer)
|
||||
|
||||
[Become a sponsor](https://opencollective.com/validatorjs#sponsor)
|
||||
|
||||
Thank you to the people who have already contributed:
|
||||
|
||||
<a href="https://github.com/validatorjs/validator.js/graphs/contributors"><img src="https://opencollective.com/validatorjs/contributors.svg?width=890" /></a>
|
||||
|
||||
## Validators
|
||||
|
||||
Here is a list of the validators currently available.
|
||||
|
||||
Validator | Description
|
||||
--------------------------------------- | --------------------------------------
|
||||
**contains(str, seed [, options ])** | check if the string contains the seed.<br/><br/>`options` is an object that defaults to `{ ignoreCase: false, minOccurrences: 1 }`.<br />Options: <br/> `ignoreCase`: Ignore case when doing comparison, default false<br/>`minOccurences`: Minimum number of occurrences for the seed in the string. Defaults to 1.
|
||||
**equals(str, comparison)** | check if the string matches the comparison.
|
||||
**isAfter(str [, date])** | check if the string is a date that's after the specified date (defaults to now).
|
||||
**isAlpha(str [, locale, options])** | check if the string contains only letters (a-zA-Z).<br/><br/>Locale is one of `['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fa-IR', 'fi-FI', 'fr-CA', 'fr-FR', 'he', 'hi-IN', 'hu-HU', 'it-IT', 'ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sk-SK', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA']`) and defaults to `en-US`. Locale list is `validator.isAlphaLocales`. options is an optional object that can be supplied with the following key(s): ignore which can either be a String or RegExp of characters to be ignored e.g. " -" will ignore spaces and -'s.
|
||||
**isAlphanumeric(str [, locale, options])** | check if the string contains only letters and numbers (a-zA-Z0-9).<br/><br/>Locale is one of `['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fa-IR', 'fi-FI', 'fr-CA', 'fr-FR', 'he', 'hi-IN', 'hu-HU', 'it-IT', 'ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sk-SK', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA']`) and defaults to `en-US`. Locale list is `validator.isAlphanumericLocales`. options is an optional object that can be supplied with the following key(s): ignore which can either be a String or RegExp of characters to be ignored e.g. " -" will ignore spaces and -'s.
|
||||
**isAscii(str)** | check if the string contains ASCII chars only.
|
||||
**isBase32(str)** | check if a string is base32 encoded.
|
||||
**isBase58(str)** | check if a string is base58 encoded.
|
||||
**isBase64(str [, options])** | check if a string is base64 encoded. options is optional and defaults to `{urlSafe: false}`<br/> when `urlSafe` is true it tests the given base64 encoded string is [url safe](https://base64.guru/standards/base64url)
|
||||
**isBefore(str [, date])** | check if the string is a date that's before the specified date.
|
||||
**isBIC(str)** | check if a string is a BIC (Bank Identification Code) or SWIFT code.
|
||||
**isBoolean(str [, options])** | check if a string is a boolean.<br/>`options` is an object which defaults to `{ loose: false }`. If loose is is set to false, the validator will strictly match ['true', 'false', '0', '1']. If loose is set to true, the validator will also match 'yes', 'no', and will match a valid boolean string of any case. (eg: ['true', 'True', 'TRUE']).
|
||||
**isBtcAddress(str)** | check if the string is a valid BTC address.
|
||||
**isByteLength(str [, options])** | check if the string's length (in UTF-8 bytes) falls in a range.<br/><br/>`options` is an object which defaults to `{min:0, max: undefined}`.
|
||||
**isCreditCard(str)** | check if the string is a credit card.
|
||||
**isCurrency(str [, options])** | check if the string is a valid currency amount.<br/><br/>`options` is an object which defaults to `{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}`.<br/>**Note:** The array `digits_after_decimal` is filled with the exact number of digits allowed not a range, for example a range 1 to 3 will be given as [1, 2, 3].
|
||||
**isDataURI(str)** | check if the string is a [data uri format](https://developer.mozilla.org/en-US/docs/Web/HTTP/data_URIs).
|
||||
**isDate(input [, options])** | Check if the input is a valid date. e.g. [`2002-07-15`, new Date()].<br/><br/> `options` is an object which can contain the keys `format`, `strictMode` and/or `delimiters`<br/><br/>`format` is a string and defaults to `YYYY/MM/DD`.<br/><br/>`strictMode` is a boolean and defaults to `false`. If `strictMode` is set to true, the validator will reject inputs different from `format`.<br/><br/> `delimiters` is an array of allowed date delimiters and defaults to `['/', '-']`.
|
||||
**isDecimal(str [, options])** | check if the string represents a decimal number, such as 0.1, .3, 1.1, 1.00003, 4.0, etc.<br/><br/>`options` is an object which defaults to `{force_decimal: false, decimal_digits: '1,', locale: 'en-US'}`<br/><br/>`locale` determine the decimal separator and is one of `['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fa', 'fa-AF', 'fa-IR', 'fr-FR', 'fr-CA', 'hu-HU', 'id-ID', 'it-IT', 'ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pl-Pl', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA', 'vi-VN']`.<br/>**Note:** `decimal_digits` is given as a range like '1,3', a specific value like '3' or min like '1,'.
|
||||
**isDivisibleBy(str, number)** | check if the string is a number that's divisible by another.
|
||||
**isEAN(str)** | check if the string is an EAN (European Article Number).
|
||||
**isEmail(str [, options])** | check if the string is an email.<br/><br/>`options` is an object which defaults to `{ allow_display_name: false, require_display_name: false, allow_utf8_local_part: true, require_tld: true, allow_ip_domain: false, domain_specific_validation: false, blacklisted_chars: '', host_blacklist: [] }`. If `allow_display_name` is set to true, the validator will also match `Display Name <email-address>`. If `require_display_name` is set to true, the validator will reject strings without the format `Display Name <email-address>`. If `allow_utf8_local_part` is set to false, the validator will not allow any non-English UTF8 character in email address' local part. If `require_tld` is set to false, e-mail addresses without having TLD in their domain will also be matched. If `ignore_max_length` is set to true, the validator will not check for the standard max length of an email. If `allow_ip_domain` is set to true, the validator will allow IP addresses in the host part. If `domain_specific_validation` is true, some additional validation will be enabled, e.g. disallowing certain syntactically valid email addresses that are rejected by GMail. If `blacklisted_chars` receives a string, then the validator will reject emails that include any of the characters in the string, in the name part. If `host_blacklist` is set to an array of strings and the part of the email after the `@` symbol matches one of the strings defined in it, the validation fails.
|
||||
**isEmpty(str [, options])** | check if the string has a length of zero.<br/><br/>`options` is an object which defaults to `{ ignore_whitespace:false }`.
|
||||
**isEthereumAddress(str)** | check if the string is an [Ethereum](https://ethereum.org/) address using basic regex. Does not validate address checksums.
|
||||
**isFloat(str [, options])** | check if the string is a float.<br/><br/>`options` is an object which can contain the keys `min`, `max`, `gt`, and/or `lt` to validate the float is within boundaries (e.g. `{ min: 7.22, max: 9.55 }`) it also has `locale` as an option.<br/><br/>`min` and `max` are equivalent to 'greater or equal' and 'less or equal', respectively while `gt` and `lt` are their strict counterparts.<br/><br/>`locale` determine the decimal separator and is one of `['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fr-CA', 'fr-FR', 'hu-HU', 'it-IT', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA']`. Locale list is `validator.isFloatLocales`.
|
||||
**isFQDN(str [, options])** | check if the string is a fully qualified domain name (e.g. domain.com).<br/><br/>`options` is an object which defaults to `{ require_tld: true, allow_underscores: false, allow_trailing_dot: false, allow_numeric_tld: false, allow_wildcard: false }`. If `allow_wildcard` is set to true, the validator will allow domain starting with `*.` (e.g. `*.example.com` or `*.shop.example.com`).
|
||||
**isFullWidth(str)** | check if the string contains any full-width chars.
|
||||
**isHalfWidth(str)** | check if the string contains any half-width chars.
|
||||
**isHash(str, algorithm)** | check if the string is a hash of type algorithm.<br/><br/>Algorithm is one of `['md4', 'md5', 'sha1', 'sha256', 'sha384', 'sha512', 'ripemd128', 'ripemd160', 'tiger128', 'tiger160', 'tiger192', 'crc32', 'crc32b']`
|
||||
**isHexadecimal(str)** | check if the string is a hexadecimal number.
|
||||
**isHexColor(str)** | check if the string is a hexadecimal color.
|
||||
**isHSL(str)** | check if the string is an HSL (hue, saturation, lightness, optional alpha) color based on [CSS Colors Level 4 specification](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value).<br/><br/>Comma-separated format supported. Space-separated format supported with the exception of a few edge cases (ex: `hsl(200grad+.1%62%/1)`).
|
||||
**isIBAN(str)** | check if a string is a IBAN (International Bank Account Number).
|
||||
**isIdentityCard(str [, locale])** | check if the string is a valid identity card code.<br/><br/>`locale` is one of `['LK', 'PL', 'ES', 'FI', 'IN', 'IT', 'IR', 'MZ', 'NO', 'TH', 'zh-TW', 'he-IL', 'ar-LY', 'ar-TN', 'zh-CN']` OR `'any'`. If 'any' is used, function will check if any of the locals match.<br/><br/>Defaults to 'any'.
|
||||
**isIMEI(str [, options]))** | check if the string is a valid IMEI number. Imei should be of format `###############` or `##-######-######-#`.<br/><br/>`options` is an object which can contain the keys `allow_hyphens`. Defaults to first format . If allow_hyphens is set to true, the validator will validate the second format.
|
||||
**isIn(str, values)** | check if the string is in a array of allowed values.
|
||||
**isInt(str [, options])** | check if the string is an integer.<br/><br/>`options` is an object which can contain the keys `min` and/or `max` to check the integer is within boundaries (e.g. `{ min: 10, max: 99 }`). `options` can also contain the key `allow_leading_zeroes`, which when set to false will disallow integer values with leading zeroes (e.g. `{ allow_leading_zeroes: false }`). Finally, `options` can contain the keys `gt` and/or `lt` which will enforce integers being greater than or less than, respectively, the value provided (e.g. `{gt: 1, lt: 4}` for a number between 1 and 4).
|
||||
**isIP(str [, version])** | check if the string is an IP (version 4 or 6).
|
||||
**isIPRange(str [, version])** | check if the string is an IP Range (version 4 or 6).
|
||||
**isISBN(str [, version])** | check if the string is an ISBN (version 10 or 13).
|
||||
**isISIN(str)** | check if the string is an [ISIN][ISIN] (stock/security identifier).
|
||||
**isISO8601(str)** | check if the string is a valid [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date. <br/>`options` is an object which defaults to `{ strict: false, strictSeparator: false }`. If `strict` is true, date strings with invalid dates like `2009-02-29` will be invalid. If `strictSeparator` is true, date strings with date and time separated by anything other than a T will be invalid.
|
||||
**isISO31661Alpha2(str)** | check if the string is a valid [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) officially assigned country code.
|
||||
**isISO31661Alpha3(str)** | check if the string is a valid [ISO 3166-1 alpha-3](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) officially assigned country code.
|
||||
**isISO4217(str)** | check if the string is a valid [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) officially assigned currency code.
|
||||
**isISRC(str)** | check if the string is a [ISRC](https://en.wikipedia.org/wiki/International_Standard_Recording_Code).
|
||||
**isISSN(str [, options])** | check if the string is an [ISSN](https://en.wikipedia.org/wiki/International_Standard_Serial_Number).<br/><br/>`options` is an object which defaults to `{ case_sensitive: false, require_hyphen: false }`. If `case_sensitive` is true, ISSNs with a lowercase `'x'` as the check digit are rejected.
|
||||
**isJSON(str [, options])** | check if the string is valid JSON (note: uses JSON.parse).<br/><br/>`options` is an object which defaults to `{ allow_primitives: false }`. If `allow_primitives` is true, the primitives 'true', 'false' and 'null' are accepted as valid JSON values.
|
||||
**isJWT(str)** | check if the string is valid JWT token.
|
||||
**isLatLong(str [, options])** | check if the string is a valid latitude-longitude coordinate in the format `lat,long` or `lat, long`.<br/><br/>`options` is an object that defaults to `{ checkDMS: false }`. Pass `checkDMS` as `true` to validate DMS(degrees, minutes, and seconds) latitude-longitude format.
|
||||
**isLength(str [, options])** | check if the string's length falls in a range.<br/><br/>`options` is an object which defaults to `{min:0, max: undefined}`. Note: this function takes into account surrogate pairs.
|
||||
**isLicensePlate(str [, locale])** | check if string matches the format of a country's license plate.<br/><br/>(locale is one of `['cs-CZ', 'de-DE', 'de-LI', 'fi-FI', pt-PT', 'sq-AL', 'pt-BR']` or `any`)
|
||||
**isLocale(str)** | check if the string is a locale
|
||||
**isLowercase(str)** | check if the string is lowercase.
|
||||
**isMACAddress(str)** | check if the string is a MAC address.<br/><br/>`options` is an object which defaults to `{no_separators: false}`. If `no_separators` is true, the validator will allow MAC addresses without separators. Also, it allows the use of hyphens, spaces or dots e.g '01 02 03 04 05 ab', '01-02-03-04-05-ab' or '0102.0304.05ab'.
|
||||
**isMagnetURI(str)** | check if the string is a [magnet uri format](https://en.wikipedia.org/wiki/Magnet_URI_scheme).
|
||||
**isMD5(str)** | check if the string is a MD5 hash.<br/><br/>Please note that you can also use the `isHash(str, 'md5')` function. Keep in mind that MD5 has some collision weaknesses compared to other algorithms (e.g., SHA).
|
||||
**isMimeType(str)** | check if the string matches to a valid [MIME type](https://en.wikipedia.org/wiki/Media_type) format
|
||||
**isMobilePhone(str [, locale [, options]])** | check if the string is a mobile phone number,<br/><br/>(locale is either an array of locales (e.g `['sk-SK', 'sr-RS']`) OR one of `['am-Am', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', ar-JO', 'ar-KW', 'ar-PS', 'ar-SA', 'ar-SY', 'ar-TN', 'az-AZ', 'az-LY', 'az-LB', 'bs-BA', 'be-BY', 'bg-BG', 'bn-BD', 'ca-AD', 'cs-CZ', 'da-DK', 'de-DE', 'de-AT', 'de-CH', 'de-LU', 'dv-MV', 'el-GR', 'en-AU', 'en-BM', 'en-BW', 'en-CA', 'en-GB', 'en-GG', 'en-GH', 'en-GY', 'en-HK', 'en-MO', 'en-IE', 'en-IN', 'en-KE', 'en-KI', 'en-MT', 'en-MU', 'en-NG', 'en-NZ', 'en-PK', 'en-PH', 'en-RW', 'en-SG', 'en-SL', 'en-UG', 'en-US', 'en-TZ', 'en-ZA', 'en-ZM', 'en-ZW', 'es-AR', 'es-BO', 'es-CL', 'es-CO', 'es-CR', 'es-CU', 'es-DO', 'es-HN', 'es-PE', 'es-EC', 'es-ES', 'es-MX', 'es-PA', 'es-PY', 'es-SV', 'es-UY', 'es-VE', 'et-EE', 'fa-IR', 'fi-FI', 'fj-FJ', 'fo-FO', 'fr-BE', 'fr-BF', 'fr-FR', 'fr-GF', 'fr-GP', 'fr-MQ', 'fr-PF', 'fr-RE', 'ga-IE', 'he-IL', 'hu-HU', 'id-ID', 'it-IT', 'it-SM', 'ja-JP', 'ka-GE', 'kk-KZ', 'kl-GL', 'ko-KR', 'lt-LT', 'ms-MY', ''mz-MZ', nb-NO', 'ne-NP', 'nl-BE', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'pt-AO', 'ro-RO', 'ru-RU', 'si-LK' 'sl-SI', 'sk-SK', 'sq-AL', 'sr-RS', 'sv-SE', 'tg-TJ', 'th-TH', 'tk-TM', 'tr-TR', 'uk-UA', 'uz-UZ', 'vi-VN', 'zh-CN', 'zh-HK', 'zh-MO', 'zh-TW', 'dz-BT']` OR defaults to 'any'. If 'any' or a falsey value is used, function will check if any of the locales match).<br/><br/>`options` is an optional object that can be supplied with the following keys: `strictMode`, if this is set to `true`, the mobile phone number must be supplied with the country code and therefore must start with `+`. Locale list is `validator.isMobilePhoneLocales`.
|
||||
**isMongoId(str)** | check if the string is a valid hex-encoded representation of a [MongoDB ObjectId][mongoid].
|
||||
**isMultibyte(str)** | check if the string contains one or more multibyte chars.
|
||||
**isNumeric(str [, options])** | check if the string contains only numbers.<br/><br/>`options` is an object which defaults to `{no_symbols: false}` it also has locale as an option. If `no_symbols` is true, the validator will reject numeric strings that feature a symbol (e.g. `+`, `-`, or `.`).<br/><br/>`locale` determine the decimal separator and is one of `['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fr-FR', 'fr-CA', 'hu-HU', 'it-IT', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA']`.
|
||||
**isOctal(str)** | check if the string is a valid octal number.
|
||||
**isPassportNumber(str, countryCode)** | check if the string is a valid passport number.<br/><br/>(countryCode is one of `[ 'AM', 'AR', 'AT', 'AU', 'BE', 'BG', 'BY', 'BR', 'CA', 'CH', 'CN', 'CY', 'CZ', 'DE', 'DK', 'DZ', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'IE' 'IN', 'IR', 'ID', 'IS', 'IT', 'JP', 'KR', 'LT', 'LU', 'LV', 'LY', 'MT', 'MY', 'MZ', 'NL', 'PL', '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,<br/><br/>(locale is one of `[ 'AD', 'AT', 'AU', 'AZ', 'BE', 'BG', 'BR', 'BY', 'CA', 'CH', 'CN', 'CZ', 'DE', 'DK', 'DO', 'DZ', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HT', 'HU', 'ID', 'IE' 'IL', 'IN', 'IR', 'IS', 'IT', 'JP', 'KE', 'KR', 'LI', 'LK', 'LT', 'LU', 'LV', 'MT', 'MX', 'MY', 'NL', 'NO', 'NP', 'NZ', 'PL', 'PR', 'PT', 'RO', 'RU', 'SA', 'SE', 'SG', '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.<br/><br/>`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).
|
||||
**isSurrogatePair(str)** | check if the string contains any surrogate pairs chars.
|
||||
**isUppercase(str)** | check if the string is uppercase.
|
||||
**isSlug** | Check if the string is of type slug. `Options` allow a single hyphen between string. e.g. [`cn-cn`, `cn-c-c`]
|
||||
**isStrongPassword(str [, options])** | Check if a password is strong or not. Allows for custom requirements or scoring rules. If `returnScore` is true, then the function returns an integer score for the password rather than a boolean.<br/>Default options: <br/>`{ minLength: 8, minLowercase: 1, minUppercase: 1, minNumbers: 1, minSymbols: 1, returnScore: false, pointsPerUnique: 1, pointsPerRepeat: 0.5, pointsForContainingLower: 10, pointsForContainingUpper: 10, pointsForContainingNumber: 10, pointsForContainingSymbol: 10 }`
|
||||
**isTaxID(str, locale)** | Check if the given value is a valid Tax Identification Number. Default locale is `en-US`.<br/><br/>More info about exact TIN support can be found in `src/lib/isTaxID.js`<br/><br/>Supported locales: `[ 'bg-BG', 'cs-CZ', 'de-AT', 'de-DE', 'dk-DK', 'el-CY', 'el-GR', 'en-GB', 'en-IE', 'en-US', 'es-ES', 'et-EE', 'fi-FI', 'fr-BE', 'fr-FR', 'fr-LU', 'hr-HR', 'hu-HU', 'it-IT', 'lb-LU', 'lt-LT', 'lv-LV' 'mt-MT', 'nl-BE', 'nl-NL', 'pl-PL', 'pt-BR', 'pt-PT', 'ro-RO', 'sk-SK', 'sl-SI', 'sv-SE' ]`
|
||||
**isURL(str [, options])** | check if the string is an URL.<br/><br/>`options` is an object which defaults to `{ protocols: ['http','https','ftp'], require_tld: true, require_protocol: false, require_host: true, require_port: false, require_valid_protocol: true, allow_underscores: false, host_whitelist: false, host_blacklist: false, allow_trailing_dot: false, allow_protocol_relative_urls: false, allow_fragments: true, allow_query_components: true, disallow_auth: false, validate_length: true }`.<br/><br/>require_protocol - if set as true isURL will return false if protocol is not present in the URL.<br/>require_valid_protocol - isURL will check if the URL's protocol is present in the protocols option.<br/>protocols - valid protocols can be modified with this option.<br/>require_host - if set as false isURL will not check if host is present in the URL.<br/>require_port - if set as true isURL will check if port is present in the URL.<br/>allow_protocol_relative_urls - if set as true protocol relative URLs will be allowed.<br/>allow_fragments - if set as false isURL will return false if fragments are present.<br/>allow_query_components - if set as false isURL will return false if query components are present.<br/>validate_length - if set as false isURL will skip string length validation (2083 characters is IE max URL length).
|
||||
**isUUID(str [, version])** | check if the string is a UUID (version 1, 2, 3, 4 or 5).
|
||||
**isVariableWidth(str)** | check if the string contains a mixture of full and half-width chars.
|
||||
**isVAT(str, countryCode)** | checks that the string is a [valid VAT number](https://en.wikipedia.org/wiki/VAT_identification_number) if validation is available for the given country code matching [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). <br/><br/>Available country codes: `[ 'GB', 'IT','NL' ]`.
|
||||
**isWhitelisted(str, chars)** | checks characters if they appear in the whitelist.
|
||||
**matches(str, pattern [, modifiers])** | check if string matches the pattern.<br/><br/>Either `matches('foo', /foo/i)` or `matches('foo', 'foo', 'i')`.
|
||||
|
||||
## Sanitizers
|
||||
|
||||
Here is a list of the sanitizers currently available.
|
||||
|
||||
Sanitizer | Description
|
||||
-------------------------------------- | -------------------------------
|
||||
**blacklist(input, chars)** | remove characters that appear in the blacklist. The characters are used in a RegExp and so you will need to escape some chars, e.g. `blacklist(input, '\\[\\]')`.
|
||||
**escape(input)** | replace `<`, `>`, `&`, `'`, `"` and `/` with HTML entities.
|
||||
**ltrim(input [, chars])** | trim characters from the left-side of the input.
|
||||
**normalizeEmail(email [, options])** | canonicalizes an email address. (This doesn't validate that the input is an email, if you want to validate the email use isEmail beforehand)<br/><br/>`options` is an object with the following keys and default values:<br/><ul><li>*all_lowercase: true* - Transforms the local part (before the @ symbol) of all email addresses to lowercase. Please note that this may violate RFC 5321, which gives providers the possibility to treat the local part of email addresses in a case sensitive way (although in practice most - yet not all - providers don't). The domain part of the email address is always lowercased, as it's case insensitive per RFC 1035.</li><li>*gmail_lowercase: true* - GMail addresses are known to be case-insensitive, so this switch allows lowercasing them even when *all_lowercase* is set to false. Please note that when *all_lowercase* is true, GMail addresses are lowercased regardless of the value of this setting.</li><li>*gmail_remove_dots: true*: Removes dots from the local part of the email address, as GMail ignores them (e.g. "john.doe" and "johndoe" are considered equal).</li><li>*gmail_remove_subaddress: true*: Normalizes addresses by removing "sub-addresses", which is the part following a "+" sign (e.g. "foo+bar@gmail.com" becomes "foo@gmail.com").</li><li>*gmail_convert_googlemaildotcom: true*: Converts addresses with domain @googlemail.com to @gmail.com, as they're equivalent.</li><li>*outlookdotcom_lowercase: true* - Outlook.com addresses (including Windows Live and Hotmail) are known to be case-insensitive, so this switch allows lowercasing them even when *all_lowercase* is set to false. Please note that when *all_lowercase* is true, Outlook.com addresses are lowercased regardless of the value of this setting.</li><li>*outlookdotcom_remove_subaddress: true*: Normalizes addresses by removing "sub-addresses", which is the part following a "+" sign (e.g. "foo+bar@outlook.com" becomes "foo@outlook.com").</li><li>*yahoo_lowercase: true* - Yahoo Mail addresses are known to be case-insensitive, so this switch allows lowercasing them even when *all_lowercase* is set to false. Please note that when *all_lowercase* is true, Yahoo Mail addresses are lowercased regardless of the value of this setting.</li><li>*yahoo_remove_subaddress: true*: Normalizes addresses by removing "sub-addresses", which is the part following a "-" sign (e.g. "foo-bar@yahoo.com" becomes "foo@yahoo.com").</li><li>*icloud_lowercase: true* - iCloud addresses (including MobileMe) are known to be case-insensitive, so this switch allows lowercasing them even when *all_lowercase* is set to false. Please note that when *all_lowercase* is true, iCloud addresses are lowercased regardless of the value of this setting.</li><li>*icloud_remove_subaddress: true*: Normalizes addresses by removing "sub-addresses", which is the part following a "+" sign (e.g. "foo+bar@icloud.com" becomes "foo@icloud.com").</li></ul>
|
||||
**rtrim(input [, chars])** | trim characters from the right-side of the input.
|
||||
**stripLow(input [, keep_new_lines])** | remove characters with a numerical value < 32 and 127, mostly control characters. If `keep_new_lines` is `true`, newline characters are preserved (`\n` and `\r`, hex `0xA` and `0xD`). Unicode-safe in JavaScript.
|
||||
**toBoolean(input [, strict])** | convert the input string to a boolean. Everything except for `'0'`, `'false'` and `''` returns `true`. In strict mode only `'1'` and `'true'` return `true`.
|
||||
**toDate(input)** | convert the input string to a date, or `null` if the input is not a date.
|
||||
**toFloat(input)** | convert the input string to a float, or `NaN` if the input is not a float.
|
||||
**toInt(input [, radix])** | convert the input string to an integer, or `NaN` if the input is not an integer.
|
||||
**trim(input [, chars])** | trim characters (whitespace by default) from both sides of the input.
|
||||
**unescape(input)** | replaces HTML encoded entities with `<`, `>`, `&`, `'`, `"` and `/`.
|
||||
**whitelist(input, chars)** | remove characters that do not appear in the whitelist. The characters are used in a RegExp and so you will need to escape some chars, e.g. `whitelist(input, '\\[\\]')`.
|
||||
|
||||
### XSS Sanitization
|
||||
|
||||
XSS sanitization was removed from the library in [2d5d6999](https://github.com/validatorjs/validator.js/commit/2d5d6999541add350fb396ef02dc42ca3215049e).
|
||||
|
||||
For an alternative, have a look at Yahoo's [xss-filters library](https://github.com/yahoo/xss-filters) or at [DOMPurify](https://github.com/cure53/DOMPurify).
|
||||
|
||||
## Contributing
|
||||
|
||||
In general, we follow the "fork-and-pull" Git workflow.
|
||||
|
||||
1. Fork the repo on GitHub
|
||||
2. Clone the project to your own machine
|
||||
3. Work on your fork
|
||||
1. Make your changes and additions
|
||||
- Most of your changes should be focused on `src/` and `test/` folders and/or `README.md`.
|
||||
- Files such as `validator.js`, `validator.min.js` and files in `lib/` folder are autogenerated when running tests (`npm test`) and need not to be changed **manually**.
|
||||
2. Change or add tests if needed
|
||||
3. Run tests and make sure they pass
|
||||
4. Add changes to README.md if needed
|
||||
4. Commit changes to your own branch
|
||||
5. **Make sure** you merge the latest from "upstream" and resolve conflicts if there is any
|
||||
6. Repeat step 3(3) above
|
||||
7. Push your work back up to your fork
|
||||
8. Submit a Pull request so that we can review your changes
|
||||
|
||||
## Tests
|
||||
|
||||
Tests are using mocha, to run the tests use:
|
||||
|
||||
```sh
|
||||
$ npm test
|
||||
```
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [chriso](https://github.com/chriso) - **Chris O'Hara** (author)
|
||||
- [profnandaa](https://github.com/profnandaa) - **Anthony Nandaa**
|
||||
|
||||
## Reading
|
||||
|
||||
Remember, validating can be troublesome sometimes. See [A list of articles about programming assumptions commonly made that aren't true](https://github.com/jameslk/awesome-falsehoods).
|
||||
|
||||
## License (MIT)
|
||||
|
||||
```
|
||||
Copyright (c) 2018 Chris O'Hara <cohara87@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
```
|
||||
|
||||
[downloads-image]: http://img.shields.io/npm/dm/validator.svg
|
||||
|
||||
[npm-url]: https://npmjs.org/package/validator
|
||||
[npm-image]: http://img.shields.io/npm/v/validator.svg
|
||||
|
||||
[codecov-url]: https://codecov.io/gh/validatorjs/validator.js
|
||||
[codecov-image]: https://codecov.io/gh/validatorjs/validator.js/branch/master/graph/badge.svg
|
||||
|
||||
[ci-url]: https://github.com/validatorjs/validator.js/actions?query=workflow%3ACI
|
||||
[ci-image]: https://github.com/validatorjs/validator.js/workflows/CI/badge.svg?branch=master
|
||||
|
||||
[amd]: http://requirejs.org/docs/whyamd.html
|
||||
[bower]: http://bower.io/
|
||||
|
||||
[mongoid]: http://docs.mongodb.org/manual/reference/object-id/
|
||||
[ISIN]: https://en.wikipedia.org/wiki/International_Securities_Identification_Number
|
||||
+198
@@ -0,0 +1,198 @@
|
||||
import toDate from './lib/toDate';
|
||||
import toFloat from './lib/toFloat';
|
||||
import toInt from './lib/toInt';
|
||||
import toBoolean from './lib/toBoolean';
|
||||
import equals from './lib/equals';
|
||||
import contains from './lib/contains';
|
||||
import matches from './lib/matches';
|
||||
import isEmail from './lib/isEmail';
|
||||
import isURL from './lib/isURL';
|
||||
import isMACAddress from './lib/isMACAddress';
|
||||
import isIP from './lib/isIP';
|
||||
import isIPRange from './lib/isIPRange';
|
||||
import isFQDN from './lib/isFQDN';
|
||||
import isDate from './lib/isDate';
|
||||
import isBoolean from './lib/isBoolean';
|
||||
import isLocale from './lib/isLocale';
|
||||
import isAlpha, { locales as isAlphaLocales } from './lib/isAlpha';
|
||||
import isAlphanumeric, { locales as isAlphanumericLocales } from './lib/isAlphanumeric';
|
||||
import isNumeric from './lib/isNumeric';
|
||||
import isPassportNumber from './lib/isPassportNumber';
|
||||
import isPort from './lib/isPort';
|
||||
import isLowercase from './lib/isLowercase';
|
||||
import isUppercase from './lib/isUppercase';
|
||||
import isIMEI from './lib/isIMEI';
|
||||
import isAscii from './lib/isAscii';
|
||||
import isFullWidth from './lib/isFullWidth';
|
||||
import isHalfWidth from './lib/isHalfWidth';
|
||||
import isVariableWidth from './lib/isVariableWidth';
|
||||
import isMultibyte from './lib/isMultibyte';
|
||||
import isSemVer from './lib/isSemVer';
|
||||
import isSurrogatePair from './lib/isSurrogatePair';
|
||||
import isInt from './lib/isInt';
|
||||
import isFloat, { locales as isFloatLocales } from './lib/isFloat';
|
||||
import isDecimal from './lib/isDecimal';
|
||||
import isHexadecimal from './lib/isHexadecimal';
|
||||
import isOctal from './lib/isOctal';
|
||||
import isDivisibleBy from './lib/isDivisibleBy';
|
||||
import isHexColor from './lib/isHexColor';
|
||||
import isRgbColor from './lib/isRgbColor';
|
||||
import isHSL from './lib/isHSL';
|
||||
import isISRC from './lib/isISRC';
|
||||
import isIBAN, { locales as ibanLocales } from './lib/isIBAN';
|
||||
import isBIC from './lib/isBIC';
|
||||
import isMD5 from './lib/isMD5';
|
||||
import isHash from './lib/isHash';
|
||||
import isJWT from './lib/isJWT';
|
||||
import isJSON from './lib/isJSON';
|
||||
import isEmpty from './lib/isEmpty';
|
||||
import isLength from './lib/isLength';
|
||||
import isByteLength from './lib/isByteLength';
|
||||
import isUUID from './lib/isUUID';
|
||||
import isMongoId from './lib/isMongoId';
|
||||
import isAfter from './lib/isAfter';
|
||||
import isBefore from './lib/isBefore';
|
||||
import isIn from './lib/isIn';
|
||||
import isCreditCard from './lib/isCreditCard';
|
||||
import isIdentityCard from './lib/isIdentityCard';
|
||||
import isEAN from './lib/isEAN';
|
||||
import isISIN from './lib/isISIN';
|
||||
import isISBN from './lib/isISBN';
|
||||
import isISSN from './lib/isISSN';
|
||||
import isTaxID from './lib/isTaxID';
|
||||
import isMobilePhone, { locales as isMobilePhoneLocales } from './lib/isMobilePhone';
|
||||
import isEthereumAddress from './lib/isEthereumAddress';
|
||||
import isCurrency from './lib/isCurrency';
|
||||
import isBtcAddress from './lib/isBtcAddress';
|
||||
import isISO8601 from './lib/isISO8601';
|
||||
import isRFC3339 from './lib/isRFC3339';
|
||||
import isISO31661Alpha2 from './lib/isISO31661Alpha2';
|
||||
import isISO31661Alpha3 from './lib/isISO31661Alpha3';
|
||||
import isISO4217 from './lib/isISO4217';
|
||||
import isBase32 from './lib/isBase32';
|
||||
import isBase58 from './lib/isBase58';
|
||||
import isBase64 from './lib/isBase64';
|
||||
import isDataURI from './lib/isDataURI';
|
||||
import isMagnetURI from './lib/isMagnetURI';
|
||||
import isMimeType from './lib/isMimeType';
|
||||
import isLatLong from './lib/isLatLong';
|
||||
import isPostalCode, { locales as isPostalCodeLocales } from './lib/isPostalCode';
|
||||
import ltrim from './lib/ltrim';
|
||||
import rtrim from './lib/rtrim';
|
||||
import trim from './lib/trim';
|
||||
import escape from './lib/escape';
|
||||
import unescape from './lib/unescape';
|
||||
import stripLow from './lib/stripLow';
|
||||
import whitelist from './lib/whitelist';
|
||||
import blacklist from './lib/blacklist';
|
||||
import isWhitelisted from './lib/isWhitelisted';
|
||||
import normalizeEmail from './lib/normalizeEmail';
|
||||
import isSlug from './lib/isSlug';
|
||||
import isLicensePlate from './lib/isLicensePlate';
|
||||
import isStrongPassword from './lib/isStrongPassword';
|
||||
import isVAT from './lib/isVAT';
|
||||
var version = '13.7.0';
|
||||
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: isAlphaLocales,
|
||||
isAlphanumeric: isAlphanumeric,
|
||||
isAlphanumericLocales: isAlphanumericLocales,
|
||||
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: isFloatLocales,
|
||||
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: isMobilePhoneLocales,
|
||||
isPostalCode: isPostalCode,
|
||||
isPostalCodeLocales: isPostalCodeLocales,
|
||||
isEthereumAddress: isEthereumAddress,
|
||||
isCurrency: isCurrency,
|
||||
isBtcAddress: isBtcAddress,
|
||||
isISO8601: isISO8601,
|
||||
isRFC3339: isRFC3339,
|
||||
isISO31661Alpha2: isISO31661Alpha2,
|
||||
isISO31661Alpha3: isISO31661Alpha3,
|
||||
isISO4217: isISO4217,
|
||||
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,
|
||||
isWhitelisted: isWhitelisted,
|
||||
normalizeEmail: normalizeEmail,
|
||||
toString: toString,
|
||||
isSlug: isSlug,
|
||||
isStrongPassword: isStrongPassword,
|
||||
isTaxID: isTaxID,
|
||||
isDate: isDate,
|
||||
isLicensePlate: isLicensePlate,
|
||||
isVAT: isVAT,
|
||||
ibanLocales: ibanLocales
|
||||
};
|
||||
export default validator;
|
||||
+123
@@ -0,0 +1,123 @@
|
||||
export 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,
|
||||
'fi-FI': /^[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,
|
||||
'th-TH': /^[ก-๐\s]+$/i,
|
||||
'tr-TR': /^[A-ZÇĞİıÖŞÜ]+$/i,
|
||||
'uk-UA': /^[А-ЩЬЮЯЄIЇҐі]+$/i,
|
||||
'vi-VN': /^[A-ZÀÁẠẢÃÂẦẤẬẨẪĂẰẮẶẲẴĐÈÉẸẺẼÊỀẾỆỂỄÌÍỊỈĨÒÓỌỎÕÔỒỐỘỔỖƠỜỚỢỞỠÙÚỤỦŨƯỪỨỰỬỮỲÝỴỶỸ]+$/i,
|
||||
'ku-IQ': /^[ئابپتجچحخدرڕزژسشعغفڤقکگلڵمنوۆھەیێيطؤثآإأكضصةظذ]+$/i,
|
||||
ar: /^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]+$/,
|
||||
he: /^[א-ת]+$/,
|
||||
fa: /^['آاءأؤئبپتثجچحخدذرزژسشصضطظعغفقکگلمنوهةی']+$/i,
|
||||
'hi-IN': /^[\u0900-\u0961]+[\u0972-\u097F]*$/i
|
||||
};
|
||||
export 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,
|
||||
'fi-FI': /^[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,
|
||||
'th-TH': /^[ก-๙\s]+$/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,
|
||||
'hi-IN': /^[\u0900-\u0963]+[\u0966-\u097F]*$/i
|
||||
};
|
||||
export var decimal = {
|
||||
'en-US': '.',
|
||||
ar: '٫'
|
||||
};
|
||||
export 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/
|
||||
|
||||
|
||||
export 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;
|
||||
}
|
||||
|
||||
export var farsiLocales = ['IR', 'AF'];
|
||||
|
||||
for (var _locale2, _i2 = 0; _i2 < farsiLocales.length; _i2++) {
|
||||
_locale2 = "fa-".concat(farsiLocales[_i2]);
|
||||
alphanumeric[_locale2] = alphanumeric.fa;
|
||||
decimal[_locale2] = decimal.ar;
|
||||
} // Source: https://en.wikipedia.org/wiki/Decimal_mark
|
||||
|
||||
|
||||
export var dotDecimal = ['ar-EG', 'ar-LB', 'ar-LY'];
|
||||
export var commaDecimal = ['bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-ZM', 'es-ES', 'fr-CA', 'fr-FR', 'id-ID', 'it-IT', 'ku-IQ', 'hi-IN', '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]] = ',';
|
||||
}
|
||||
|
||||
alpha['fr-CA'] = alpha['fr-FR'];
|
||||
alphanumeric['fr-CA'] = alphanumeric['fr-FR'];
|
||||
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']; // see #1455
|
||||
|
||||
alpha['fa-AF'] = alpha.fa;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function blacklist(str, chars) {
|
||||
assertString(str);
|
||||
return str.replace(new RegExp("[".concat(chars, "]+"), 'g'), '');
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
import assertString from './util/assertString';
|
||||
import toString from './util/toString';
|
||||
import merge from './util/merge';
|
||||
var defaulContainsOptions = {
|
||||
ignoreCase: false,
|
||||
minOccurrences: 1
|
||||
};
|
||||
export default function contains(str, elem, options) {
|
||||
assertString(str);
|
||||
options = merge(options, defaulContainsOptions);
|
||||
|
||||
if (options.ignoreCase) {
|
||||
return str.toLowerCase().split(toString(elem).toLowerCase()).length > options.minOccurrences;
|
||||
}
|
||||
|
||||
return str.split(toString(elem)).length > options.minOccurrences;
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function equals(str, comparison) {
|
||||
assertString(str);
|
||||
return str === comparison;
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function escape(str) {
|
||||
assertString(str);
|
||||
return str.replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(/</g, '<').replace(/>/g, '>').replace(/\//g, '/').replace(/\\/g, '\').replace(/`/g, '`');
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import assertString from './util/assertString';
|
||||
import toDate from './toDate';
|
||||
export default 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);
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
import assertString from './util/assertString';
|
||||
import { alpha } from './alpha';
|
||||
export default function isAlpha(_str) {
|
||||
var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
|
||||
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
||||
assertString(_str);
|
||||
var str = _str;
|
||||
var ignore = options.ignore;
|
||||
|
||||
if (ignore) {
|
||||
if (ignore instanceof RegExp) {
|
||||
str = str.replace(ignore, '');
|
||||
} else if (typeof ignore === 'string') {
|
||||
str = str.replace(new RegExp("[".concat(ignore.replace(/[-[\]{}()*+?.,\\^$|#\\s]/g, '\\$&'), "]"), 'g'), ''); // escape regex for ignore
|
||||
} else {
|
||||
throw new Error('ignore should be instance of a String or RegExp');
|
||||
}
|
||||
}
|
||||
|
||||
if (locale in alpha) {
|
||||
return alpha[locale].test(str);
|
||||
}
|
||||
|
||||
throw new Error("Invalid locale '".concat(locale, "'"));
|
||||
}
|
||||
export var locales = Object.keys(alpha);
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
import assertString from './util/assertString';
|
||||
import { alphanumeric } from './alpha';
|
||||
export default function isAlphanumeric(_str) {
|
||||
var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
|
||||
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
||||
assertString(_str);
|
||||
var str = _str;
|
||||
var ignore = options.ignore;
|
||||
|
||||
if (ignore) {
|
||||
if (ignore instanceof RegExp) {
|
||||
str = str.replace(ignore, '');
|
||||
} else if (typeof ignore === 'string') {
|
||||
str = str.replace(new RegExp("[".concat(ignore.replace(/[-[\]{}()*+?.,\\^$|#\\s]/g, '\\$&'), "]"), 'g'), ''); // escape regex for ignore
|
||||
} else {
|
||||
throw new Error('ignore should be instance of a String or RegExp');
|
||||
}
|
||||
}
|
||||
|
||||
if (locale in alphanumeric) {
|
||||
return alphanumeric[locale].test(str);
|
||||
}
|
||||
|
||||
throw new Error("Invalid locale '".concat(locale, "'"));
|
||||
}
|
||||
export var locales = Object.keys(alphanumeric);
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import assertString from './util/assertString';
|
||||
/* eslint-disable no-control-regex */
|
||||
|
||||
var ascii = /^[\x00-\x7F]+$/;
|
||||
/* eslint-enable no-control-regex */
|
||||
|
||||
export default function isAscii(str) {
|
||||
assertString(str);
|
||||
return ascii.test(str);
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import assertString from './util/assertString';
|
||||
import { CountryCodes } from './isISO31661Alpha2'; // https://en.wikipedia.org/wiki/ISO_9362
|
||||
|
||||
var isBICReg = /^[A-Za-z]{6}[A-Za-z0-9]{2}([A-Za-z0-9]{3})?$/;
|
||||
export default function isBIC(str) {
|
||||
assertString(str); // toUpperCase() should be removed when a new major version goes out that changes
|
||||
// the regex to [A-Z] (per the spec).
|
||||
|
||||
if (!CountryCodes.has(str.slice(4, 6).toUpperCase())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return isBICReg.test(str);
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
import assertString from './util/assertString';
|
||||
var base32 = /^[A-Z2-7]+=*$/;
|
||||
export default function isBase32(str) {
|
||||
assertString(str);
|
||||
var len = str.length;
|
||||
|
||||
if (len % 8 === 0 && base32.test(str)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
import assertString from './util/assertString'; // Accepted chars - 123456789ABCDEFGH JKLMN PQRSTUVWXYZabcdefghijk mnopqrstuvwxyz
|
||||
|
||||
var base58Reg = /^[A-HJ-NP-Za-km-z1-9]*$/;
|
||||
export default function isBase58(str) {
|
||||
assertString(str);
|
||||
|
||||
if (base58Reg.test(str)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
import assertString from './util/assertString';
|
||||
import merge from './util/merge';
|
||||
var notBase64 = /[^A-Z0-9+\/=]/i;
|
||||
var urlSafeBase64 = /^[A-Z0-9_\-]*$/i;
|
||||
var defaultBase64Options = {
|
||||
urlSafe: false
|
||||
};
|
||||
export default 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 firstPaddingChar = str.indexOf('=');
|
||||
return firstPaddingChar === -1 || firstPaddingChar === len - 1 || firstPaddingChar === len - 2 && str[len - 1] === '=';
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import assertString from './util/assertString';
|
||||
import toDate from './toDate';
|
||||
export default 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);
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
import assertString from './util/assertString';
|
||||
var defaultOptions = {
|
||||
loose: false
|
||||
};
|
||||
var strictBooleans = ['true', 'false', '1', '0'];
|
||||
var looseBooleans = [].concat(strictBooleans, ['yes', 'no']);
|
||||
export default function isBoolean(str) {
|
||||
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : defaultOptions;
|
||||
assertString(str);
|
||||
|
||||
if (options.loose) {
|
||||
return looseBooleans.includes(str.toLowerCase());
|
||||
}
|
||||
|
||||
return strictBooleans.includes(str);
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
import assertString from './util/assertString'; // supports Bech32 addresses
|
||||
|
||||
var bech32 = /^(bc1)[a-z0-9]{25,39}$/;
|
||||
var base58 = /^(1|3)[A-HJ-NP-Za-km-z1-9]{25,39}$/;
|
||||
export default function isBtcAddress(str) {
|
||||
assertString(str); // check for bech32
|
||||
|
||||
if (str.startsWith('bc1')) {
|
||||
return bech32.test(str);
|
||||
}
|
||||
|
||||
return base58.test(str);
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
import assertString from './util/assertString';
|
||||
/* eslint-disable prefer-rest-params */
|
||||
|
||||
export default function isByteLength(str, options) {
|
||||
assertString(str);
|
||||
var min;
|
||||
var max;
|
||||
|
||||
if (_typeof(options) === 'object') {
|
||||
min = options.min || 0;
|
||||
max = options.max;
|
||||
} else {
|
||||
// backwards compatibility: isByteLength(str, min [, max])
|
||||
min = arguments[1];
|
||||
max = arguments[2];
|
||||
}
|
||||
|
||||
var len = encodeURI(str).split(/%..|./).length - 1;
|
||||
return len >= min && (typeof max === 'undefined' || len <= max);
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
import assertString from './util/assertString';
|
||||
/* eslint-disable max-len */
|
||||
|
||||
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}|^(81[0-9]{14,17}))$/;
|
||||
/* eslint-enable max-len */
|
||||
|
||||
export default function isCreditCard(str) {
|
||||
assertString(str);
|
||||
var sanitized = str.replace(/[- ]+/g, '');
|
||||
|
||||
if (!creditCard.test(sanitized)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var sum = 0;
|
||||
var digit;
|
||||
var tmpNum;
|
||||
var shouldDouble;
|
||||
|
||||
for (var i = sanitized.length - 1; i >= 0; i--) {
|
||||
digit = sanitized.substring(i, i + 1);
|
||||
tmpNum = parseInt(digit, 10);
|
||||
|
||||
if (shouldDouble) {
|
||||
tmpNum *= 2;
|
||||
|
||||
if (tmpNum >= 10) {
|
||||
sum += tmpNum % 10 + 1;
|
||||
} else {
|
||||
sum += tmpNum;
|
||||
}
|
||||
} else {
|
||||
sum += tmpNum;
|
||||
}
|
||||
|
||||
shouldDouble = !shouldDouble;
|
||||
}
|
||||
|
||||
return !!(sum % 10 === 0 ? sanitized : false);
|
||||
}
|
||||
Generated
Vendored
Executable
+77
@@ -0,0 +1,77 @@
|
||||
import merge from './util/merge';
|
||||
import assertString from './util/assertString';
|
||||
|
||||
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
|
||||
};
|
||||
export default function isCurrency(str, options) {
|
||||
assertString(str);
|
||||
options = merge(options, default_currency_options);
|
||||
return currencyRegex(options).test(str);
|
||||
}
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
import assertString from './util/assertString';
|
||||
var validMediaType = /^[a-z]+\/[a-z0-9\-\+]+$/i;
|
||||
var validAttribute = /^[a-z\-]+=[a-z0-9\-]+$/i;
|
||||
var validData = /^[a-z0-9!\$&'\(\)\*\+,;=\-\._~:@\/\?%\s]*$/i;
|
||||
export default function isDataURI(str) {
|
||||
assertString(str);
|
||||
var data = str.split(',');
|
||||
|
||||
if (data.length < 2) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var attributes = data.shift().trim().split(';');
|
||||
var schemeAndMediaType = attributes.shift();
|
||||
|
||||
if (schemeAndMediaType.substr(0, 5) !== 'data:') {
|
||||
return false;
|
||||
}
|
||||
|
||||
var mediaType = schemeAndMediaType.substr(5);
|
||||
|
||||
if (mediaType !== '' && !validMediaType.test(mediaType)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for (var i = 0; i < attributes.length; i++) {
|
||||
if (!(i === attributes.length - 1 && attributes[i].toLowerCase() === 'base64') && !validAttribute.test(attributes[i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
for (var _i = 0; _i < data.length; _i++) {
|
||||
if (!validData.test(data[_i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
||||
|
||||
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 _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 _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
||||
|
||||
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 F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, 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 s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
|
||||
|
||||
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; }
|
||||
|
||||
import merge from './util/merge';
|
||||
var default_date_options = {
|
||||
format: 'YYYY/MM/DD',
|
||||
delimiters: ['/', '-'],
|
||||
strictMode: false
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
export default 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 = {};
|
||||
|
||||
var _iterator = _createForOfIteratorHelper(dateAndFormat),
|
||||
_step;
|
||||
|
||||
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;
|
||||
}
|
||||
} 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);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
import merge from './util/merge';
|
||||
import assertString from './util/assertString';
|
||||
import includes from './util/includes';
|
||||
import { decimal } from './alpha';
|
||||
|
||||
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 = ['', '-', '+'];
|
||||
export default 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, "'"));
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
import toFloat from './toFloat';
|
||||
export default function isDivisibleBy(str, num) {
|
||||
assertString(str);
|
||||
return toFloat(str) % parseInt(num, 10) === 0;
|
||||
}
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
/**
|
||||
* 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.
|
||||
* Also EAN/UCC-14 is used for Grouping of individual
|
||||
* trade items above unit level(Intermediate, Carton or Pallet).
|
||||
* For more info about EAN-14 checkout: https://www.gtin.info/itf-14-barcodes/
|
||||
* EAN consists of:
|
||||
* GS1 prefix, manufacturer code, product code and check digit
|
||||
* Reference: https://en.wikipedia.org/wiki/International_Article_Number
|
||||
* Reference: https://www.gtin.info/
|
||||
*/
|
||||
import assertString from './util/assertString';
|
||||
/**
|
||||
* Define EAN Lenghts; 8 for EAN-8; 13 for EAN-13; 14 for EAN-14
|
||||
* and Regular Expression for valid EANs (EAN-8, EAN-13, EAN-14),
|
||||
* with exact numberic matching of 8 or 13 or 14 digits [0-9]
|
||||
*/
|
||||
|
||||
var LENGTH_EAN_8 = 8;
|
||||
var LENGTH_EAN_14 = 14;
|
||||
var validEanRegex = /^(\d{8}|\d{13}|\d{14})$/;
|
||||
/**
|
||||
* 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 || length === LENGTH_EAN_14) {
|
||||
return index % 2 === 0 ? 3 : 1;
|
||||
}
|
||||
|
||||
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}
|
||||
*/
|
||||
|
||||
|
||||
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/EAN-14 regex
|
||||
* Has valid check digit.
|
||||
*
|
||||
* @param {string} str
|
||||
* @return {boolean}
|
||||
*/
|
||||
|
||||
|
||||
export default function isEAN(str) {
|
||||
assertString(str);
|
||||
var actualCheckDigit = Number(str.slice(-1));
|
||||
return validEanRegex.test(str) && actualCheckDigit === calculateCheckDigit(str);
|
||||
}
|
||||
+180
@@ -0,0 +1,180 @@
|
||||
import assertString from './util/assertString';
|
||||
import merge from './util/merge';
|
||||
import isByteLength from './isByteLength';
|
||||
import isFQDN from './isFQDN';
|
||||
import isIP from './isIP';
|
||||
var default_email_options = {
|
||||
allow_display_name: false,
|
||||
require_display_name: false,
|
||||
allow_utf8_local_part: true,
|
||||
require_tld: true,
|
||||
blacklisted_chars: '',
|
||||
ignore_max_length: false,
|
||||
host_blacklist: []
|
||||
};
|
||||
/* eslint-disable max-len */
|
||||
|
||||
/* 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 */
|
||||
|
||||
/* eslint-enable no-control-regex */
|
||||
|
||||
/**
|
||||
* 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 display_name_without_quotes = display_name.replace(/^"(.+)"$/, '$1'); // display name with only spaces is not valid
|
||||
|
||||
if (!display_name_without_quotes.trim()) {
|
||||
return false;
|
||||
} // check whether display name contains illegal character
|
||||
|
||||
|
||||
var contains_illegal = /[\.";<>]/.test(display_name_without_quotes);
|
||||
|
||||
if (contains_illegal) {
|
||||
// if contains illegal characters,
|
||||
// must to be enclosed in double-quotes, otherwise it's not a valid display name
|
||||
if (display_name_without_quotes === display_name) {
|
||||
return false;
|
||||
} // the quotes in display name must start with character symbol \
|
||||
|
||||
|
||||
var all_start_with_back_slash = display_name_without_quotes.split('"').length === display_name_without_quotes.split('\\"').length;
|
||||
|
||||
if (!all_start_with_back_slash) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
export default function isEmail(str, options) {
|
||||
assertString(str);
|
||||
options = merge(options, default_email_options);
|
||||
|
||||
if (options.require_display_name || options.allow_display_name) {
|
||||
var display_email = str.match(splitNameAddress);
|
||||
|
||||
if (display_email) {
|
||||
var display_name = display_email[1]; // Remove display name and angle brackets to get email address
|
||||
// Can be done in the regex but will introduce a ReDOS (See #1597 for more info)
|
||||
|
||||
str = str.replace(display_name, '').replace(/(^<|>$)/g, ''); // 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 <address@gmail.com>
|
||||
// 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 (!validateDisplayName(display_name)) {
|
||||
return false;
|
||||
}
|
||||
} else if (options.require_display_name) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (!options.ignore_max_length && str.length > defaultMaxEmailLength) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var parts = str.split('@');
|
||||
var domain = parts.pop();
|
||||
var lower_domain = domain.toLowerCase();
|
||||
|
||||
if (options.host_blacklist.includes(lower_domain)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var user = parts.join('@');
|
||||
|
||||
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(/\./g, ''), {
|
||||
min: 6,
|
||||
max: 30
|
||||
})) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var _user_parts = username.split('.');
|
||||
|
||||
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 (!isFQDN(domain, {
|
||||
require_tld: options.require_tld
|
||||
})) {
|
||||
if (!options.allow_ip_domain) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!isIP(domain)) {
|
||||
if (!domain.startsWith('[') || !domain.endsWith(']')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var noBracketdomain = domain.substr(1, domain.length - 2);
|
||||
|
||||
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('.');
|
||||
|
||||
for (var _i = 0; _i < user_parts.length; _i++) {
|
||||
if (!pattern.test(user_parts[_i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (options.blacklisted_chars) {
|
||||
if (user.search(new RegExp("[".concat(options.blacklisted_chars, "]+"), 'g')) !== -1) return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import assertString from './util/assertString';
|
||||
import merge from './util/merge';
|
||||
var default_is_empty_options = {
|
||||
ignore_whitespace: false
|
||||
};
|
||||
export default function isEmpty(str, options) {
|
||||
assertString(str);
|
||||
options = merge(options, default_is_empty_options);
|
||||
return (options.ignore_whitespace ? str.trim().length : str.length) === 0;
|
||||
}
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var eth = /^(0x)[0-9a-f]{40}$/i;
|
||||
export default function isEthereumAddress(str) {
|
||||
assertString(str);
|
||||
return eth.test(str);
|
||||
}
|
||||
+74
@@ -0,0 +1,74 @@
|
||||
import assertString from './util/assertString';
|
||||
import merge from './util/merge';
|
||||
var default_fqdn_options = {
|
||||
require_tld: true,
|
||||
allow_underscores: false,
|
||||
allow_trailing_dot: false,
|
||||
allow_numeric_tld: false,
|
||||
allow_wildcard: false
|
||||
};
|
||||
export default function isFQDN(str, options) {
|
||||
assertString(str);
|
||||
options = merge(options, default_fqdn_options);
|
||||
/* Remove the optional trailing dot before checking validity */
|
||||
|
||||
if (options.allow_trailing_dot && str[str.length - 1] === '.') {
|
||||
str = str.substring(0, str.length - 1);
|
||||
}
|
||||
/* Remove the optional wildcard before checking validity */
|
||||
|
||||
|
||||
if (options.allow_wildcard === true && str.indexOf('*.') === 0) {
|
||||
str = str.substring(2);
|
||||
}
|
||||
|
||||
var parts = str.split('.');
|
||||
var tld = parts[parts.length - 1];
|
||||
|
||||
if (options.require_tld) {
|
||||
// disallow fqdns without tld
|
||||
if (parts.length < 2) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!/^([a-z\u00A1-\u00A8\u00AA-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}|xn[a-z0-9-]{2,})$/i.test(tld)) {
|
||||
return false;
|
||||
} // disallow spaces
|
||||
|
||||
|
||||
if (/\s/.test(tld)) {
|
||||
return false;
|
||||
}
|
||||
} // reject numeric TLDs
|
||||
|
||||
|
||||
if (!options.allow_numeric_tld && /^\d+$/.test(tld)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return parts.every(function (part) {
|
||||
if (part.length > 63) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!/^[a-z_\u00a1-\uffff0-9-]+$/i.test(part)) {
|
||||
return false;
|
||||
} // disallow full-width chars
|
||||
|
||||
|
||||
if (/[\uff01-\uff5e]/.test(part)) {
|
||||
return false;
|
||||
} // disallow parts starting or ending with hyphen
|
||||
|
||||
|
||||
if (/^-|-$/.test(part)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!options.allow_underscores && /_/.test(part)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
import assertString from './util/assertString';
|
||||
import { decimal } from './alpha';
|
||||
export default 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;
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
export var locales = Object.keys(decimal);
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
export var fullWidth = /[^\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
|
||||
export default function isFullWidth(str) {
|
||||
assertString(str);
|
||||
return fullWidth.test(str);
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import assertString from './util/assertString';
|
||||
var hslComma = /^hsla?\(((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn)?(,(\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%){2}(,((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?)%?))?\)$/i;
|
||||
var hslSpace = /^hsla?\(((\+|\-)?([0-9]+(\.[0-9]+)?(e(\+|\-)?[0-9]+)?|\.[0-9]+(e(\+|\-)?[0-9]+)?))(deg|grad|rad|turn)?(\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;
|
||||
export default function isHSL(str) {
|
||||
assertString(str); // Strip duplicate spaces before calling the validation regex (See #1598 for more info)
|
||||
|
||||
var strippedStr = str.replace(/\s+/g, ' ').replace(/\s?(hsla?\(|\)|,)\s?/ig, '$1');
|
||||
|
||||
if (strippedStr.indexOf(',') !== -1) {
|
||||
return hslComma.test(strippedStr);
|
||||
}
|
||||
|
||||
return hslSpace.test(strippedStr);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
export var halfWidth = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
|
||||
export default function isHalfWidth(str) {
|
||||
assertString(str);
|
||||
return halfWidth.test(str);
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
import assertString from './util/assertString';
|
||||
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
|
||||
};
|
||||
export default function isHash(str, algorithm) {
|
||||
assertString(str);
|
||||
var hash = new RegExp("^[a-fA-F0-9]{".concat(lengths[algorithm], "}$"));
|
||||
return hash.test(str);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var hexcolor = /^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i;
|
||||
export default function isHexColor(str) {
|
||||
assertString(str);
|
||||
return hexcolor.test(str);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var hexadecimal = /^(0x|0h)?[0-9A-F]+$/i;
|
||||
export default function isHexadecimal(str) {
|
||||
assertString(str);
|
||||
return hexadecimal.test(str);
|
||||
}
|
||||
+138
@@ -0,0 +1,138 @@
|
||||
import assertString from './util/assertString';
|
||||
/**
|
||||
* 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}$/,
|
||||
MZ: /^(MZ[0-9]{2})\d{21}$/,
|
||||
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}
|
||||
*/
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
export default function isIBAN(str) {
|
||||
assertString(str);
|
||||
return hasValidIbanFormat(str) && hasValidIbanChecksum(str);
|
||||
}
|
||||
export var locales = Object.keys(ibanRegexThroughCountryCode);
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
import assertString from './util/assertString';
|
||||
var imeiRegexWithoutHypens = /^[0-9]{15}$/;
|
||||
var imeiRegexWithHypens = /^\d{2}-\d{6}-\d{6}-\d{1}$/;
|
||||
export default function isIMEI(str, options) {
|
||||
assertString(str);
|
||||
options = options || {}; // default regex for checking imei is the one without hyphens
|
||||
|
||||
var imeiRegex = imeiRegexWithoutHypens;
|
||||
|
||||
if (options.allow_hyphens) {
|
||||
imeiRegex = imeiRegexWithHypens;
|
||||
}
|
||||
|
||||
if (!imeiRegex.test(str)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
if (mul === 1) {
|
||||
mul += 1;
|
||||
} else {
|
||||
mul -= 1;
|
||||
}
|
||||
}
|
||||
|
||||
var chk = (10 - sum % 10) % 10;
|
||||
|
||||
if (chk !== parseInt(str.substring(14, 15), 10)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
import assertString from './util/assertString';
|
||||
/**
|
||||
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
|
||||
<zone_id> part, where the Nth zone of any scope is translated into
|
||||
"N".)
|
||||
|
||||
If we use interface names as <zone_id>, 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 IPv4SegmentFormat = '(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])';
|
||||
var IPv4AddressFormat = "(".concat(IPv4SegmentFormat, "[.]){3}").concat(IPv4SegmentFormat);
|
||||
var IPv4AddressRegExp = new RegExp("^".concat(IPv4AddressFormat, "$"));
|
||||
var IPv6SegmentFormat = '(?:[0-9a-fA-F]{1,4})';
|
||||
var IPv6AddressRegExp = new RegExp('^(' + "(?:".concat(IPv6SegmentFormat, ":){7}(?:").concat(IPv6SegmentFormat, "|:)|") + "(?:".concat(IPv6SegmentFormat, ":){6}(?:").concat(IPv4AddressFormat, "|:").concat(IPv6SegmentFormat, "|:)|") + "(?:".concat(IPv6SegmentFormat, ":){5}(?::").concat(IPv4AddressFormat, "|(:").concat(IPv6SegmentFormat, "){1,2}|:)|") + "(?:".concat(IPv6SegmentFormat, ":){4}(?:(:").concat(IPv6SegmentFormat, "){0,1}:").concat(IPv4AddressFormat, "|(:").concat(IPv6SegmentFormat, "){1,3}|:)|") + "(?:".concat(IPv6SegmentFormat, ":){3}(?:(:").concat(IPv6SegmentFormat, "){0,2}:").concat(IPv4AddressFormat, "|(:").concat(IPv6SegmentFormat, "){1,4}|:)|") + "(?:".concat(IPv6SegmentFormat, ":){2}(?:(:").concat(IPv6SegmentFormat, "){0,3}:").concat(IPv4AddressFormat, "|(:").concat(IPv6SegmentFormat, "){1,5}|:)|") + "(?:".concat(IPv6SegmentFormat, ":){1}(?:(:").concat(IPv6SegmentFormat, "){0,4}:").concat(IPv4AddressFormat, "|(:").concat(IPv6SegmentFormat, "){1,6}|:)|") + "(?::((?::".concat(IPv6SegmentFormat, "){0,5}:").concat(IPv4AddressFormat, "|(?::").concat(IPv6SegmentFormat, "){1,7}|:))") + ')(%[0-9a-zA-Z-.:]{1,})?$');
|
||||
export default 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);
|
||||
}
|
||||
|
||||
if (version === '4') {
|
||||
if (!IPv4AddressRegExp.test(str)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var parts = str.split('.').sort(function (a, b) {
|
||||
return a - b;
|
||||
});
|
||||
return parts[3] <= 255;
|
||||
}
|
||||
|
||||
if (version === '6') {
|
||||
return !!IPv6AddressRegExp.test(str);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
import assertString from './util/assertString';
|
||||
import isIP from './isIP';
|
||||
var subnetMaybe = /^\d{1,3}$/;
|
||||
var v4Subnet = 32;
|
||||
var v6Subnet = 128;
|
||||
export default function isIPRange(str) {
|
||||
var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
||||
assertString(str);
|
||||
var parts = str.split('/'); // parts[0] -> ip, parts[1] -> subnet
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
var isValidIP = isIP(parts[0], version);
|
||||
|
||||
if (!isValidIP) {
|
||||
return false;
|
||||
} // Define valid subnet according to IP's version
|
||||
|
||||
|
||||
var expectedSubnet = null;
|
||||
|
||||
switch (String(version)) {
|
||||
case '4':
|
||||
expectedSubnet = v4Subnet;
|
||||
break;
|
||||
|
||||
case '6':
|
||||
expectedSubnet = v6Subnet;
|
||||
break;
|
||||
|
||||
default:
|
||||
expectedSubnet = isIP(parts[0], '6') ? v6Subnet : v4Subnet;
|
||||
}
|
||||
|
||||
return parts[1] <= expectedSubnet && parts[1] >= 0;
|
||||
}
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
import assertString from './util/assertString';
|
||||
var isbn10Maybe = /^(?:[0-9]{9}X|[0-9]{10})$/;
|
||||
var isbn13Maybe = /^(?:[0-9]{13})$/;
|
||||
var factor = [1, 3];
|
||||
export default 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);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
for (i = 0; i < 12; i++) {
|
||||
checksum += factor[i % 2] * sanitized.charAt(i);
|
||||
}
|
||||
|
||||
if (sanitized.charAt(12) - (10 - checksum % 10) % 10 === 0) {
|
||||
return !!sanitized;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
+60
@@ -0,0 +1,60 @@
|
||||
import assertString from './util/assertString';
|
||||
var isin = /^[A-Z]{2}[0-9A-Z]{9}[0-9]$/; // this link details how the check digit is calculated:
|
||||
// https://www.isin.org/isin-format/. it is a little bit
|
||||
// odd in that it works with digits, not numbers. in order
|
||||
// to make only one pass through the ISIN characters, the
|
||||
// each alpha character is handled as 2 characters within
|
||||
// the loop.
|
||||
|
||||
export default function isISIN(str) {
|
||||
assertString(str);
|
||||
|
||||
if (!isin.test(str)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var _double = true;
|
||||
var sum = 0; // convert values
|
||||
|
||||
for (var i = str.length - 2; i >= 0; i--) {
|
||||
if (str[i] >= 'A' && str[i] <= 'Z') {
|
||||
var value = str[i].charCodeAt(0) - 55;
|
||||
var lo = value % 10;
|
||||
var hi = Math.trunc(value / 10); // letters have two digits, so handle the low order
|
||||
// and high order digits separately.
|
||||
|
||||
for (var _i = 0, _arr = [lo, hi]; _i < _arr.length; _i++) {
|
||||
var digit = _arr[_i];
|
||||
|
||||
if (_double) {
|
||||
if (digit >= 5) {
|
||||
sum += 1 + (digit - 5) * 2;
|
||||
} else {
|
||||
sum += digit * 2;
|
||||
}
|
||||
} else {
|
||||
sum += digit;
|
||||
}
|
||||
|
||||
_double = !_double;
|
||||
}
|
||||
} else {
|
||||
var _digit = str[i].charCodeAt(0) - '0'.charCodeAt(0);
|
||||
|
||||
if (_double) {
|
||||
if (_digit >= 5) {
|
||||
sum += 1 + (_digit - 5) * 2;
|
||||
} else {
|
||||
sum += _digit * 2;
|
||||
}
|
||||
} else {
|
||||
sum += _digit;
|
||||
}
|
||||
|
||||
_double = !_double;
|
||||
}
|
||||
}
|
||||
|
||||
var check = Math.trunc((sum + 9) / 10) * 10 - sum;
|
||||
return +str[str.length - 1] === check;
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import assertString from './util/assertString'; // from https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
||||
|
||||
var validISO31661Alpha2CountriesCodes = new Set(['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']);
|
||||
export default function isISO31661Alpha2(str) {
|
||||
assertString(str);
|
||||
return validISO31661Alpha2CountriesCodes.has(str.toUpperCase());
|
||||
}
|
||||
export var CountryCodes = validISO31661Alpha2CountriesCodes;
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import assertString from './util/assertString'; // from https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3
|
||||
|
||||
var validISO31661Alpha3CountriesCodes = new Set(['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']);
|
||||
export default function isISO31661Alpha3(str) {
|
||||
assertString(str);
|
||||
return validISO31661Alpha3CountriesCodes.has(str.toUpperCase());
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import assertString from './util/assertString'; // from https://en.wikipedia.org/wiki/ISO_4217
|
||||
|
||||
var validISO4217CurrencyCodes = new Set(['AED', 'AFN', 'ALL', 'AMD', 'ANG', 'AOA', 'ARS', 'AUD', 'AWG', 'AZN', 'BAM', 'BBD', 'BDT', 'BGN', 'BHD', 'BIF', 'BMD', 'BND', 'BOB', 'BOV', 'BRL', 'BSD', 'BTN', 'BWP', 'BYN', 'BZD', 'CAD', 'CDF', 'CHE', 'CHF', 'CHW', 'CLF', 'CLP', 'CNY', 'COP', 'COU', 'CRC', 'CUC', 'CUP', 'CVE', 'CZK', 'DJF', 'DKK', 'DOP', 'DZD', 'EGP', 'ERN', 'ETB', 'EUR', 'FJD', 'FKP', 'GBP', 'GEL', 'GHS', 'GIP', 'GMD', 'GNF', 'GTQ', 'GYD', 'HKD', 'HNL', 'HRK', 'HTG', 'HUF', 'IDR', 'ILS', 'INR', 'IQD', 'IRR', 'ISK', 'JMD', 'JOD', 'JPY', 'KES', 'KGS', 'KHR', 'KMF', 'KPW', 'KRW', 'KWD', 'KYD', 'KZT', 'LAK', 'LBP', 'LKR', 'LRD', 'LSL', 'LYD', 'MAD', 'MDL', 'MGA', 'MKD', 'MMK', 'MNT', 'MOP', 'MRU', 'MUR', 'MVR', 'MWK', 'MXN', 'MXV', 'MYR', 'MZN', 'NAD', 'NGN', 'NIO', 'NOK', 'NPR', 'NZD', 'OMR', 'PAB', 'PEN', 'PGK', 'PHP', 'PKR', 'PLN', 'PYG', 'QAR', 'RON', 'RSD', 'RUB', 'RWF', 'SAR', 'SBD', 'SCR', 'SDG', 'SEK', 'SGD', 'SHP', 'SLL', 'SOS', 'SRD', 'SSP', 'STN', 'SVC', 'SYP', 'SZL', 'THB', 'TJS', 'TMT', 'TND', 'TOP', 'TRY', 'TTD', 'TWD', 'TZS', 'UAH', 'UGX', 'USD', 'USN', 'UYI', 'UYU', 'UYW', 'UZS', 'VES', 'VND', 'VUV', 'WST', 'XAF', 'XAG', 'XAU', 'XBA', 'XBB', 'XBC', 'XBD', 'XCD', 'XDR', 'XOF', 'XPD', 'XPF', 'XPT', 'XSU', 'XTS', 'XUA', 'XXX', 'YER', 'ZAR', 'ZMW', 'ZWL']);
|
||||
export default function isISO4217(str) {
|
||||
assertString(str);
|
||||
return validISO4217CurrencyCodes.has(str.toUpperCase());
|
||||
}
|
||||
export var CurrencyCodes = validISO4217CurrencyCodes;
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
import assertString from './util/assertString';
|
||||
/* 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)?)?)?)?$/; // same as above, except with a strict 'T' separator between date and time
|
||||
|
||||
var iso8601StrictSeparator = /^([\+-]?\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]((([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;
|
||||
};
|
||||
|
||||
export default function isISO8601(str) {
|
||||
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||
assertString(str);
|
||||
var check = options.strictSeparator ? iso8601StrictSeparator.test(str) : iso8601.test(str);
|
||||
if (check && options.strict) return isValidDate(str);
|
||||
return check;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import assertString from './util/assertString'; // see http://isrc.ifpi.org/en/isrc-standard/code-syntax
|
||||
|
||||
var isrc = /^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/;
|
||||
export default function isISRC(str) {
|
||||
assertString(str);
|
||||
return isrc.test(str);
|
||||
}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
import assertString from './util/assertString';
|
||||
var issn = '^\\d{4}-?\\d{3}[\\dX]$';
|
||||
export default 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');
|
||||
|
||||
if (!testIssn.test(str)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var digits = str.replace('-', '').toUpperCase();
|
||||
var checksum = 0;
|
||||
|
||||
for (var i = 0; i < digits.length; i++) {
|
||||
var digit = digits[i];
|
||||
checksum += (digit === 'X' ? 10 : +digit) * (8 - i);
|
||||
}
|
||||
|
||||
return checksum % 11 === 0;
|
||||
}
|
||||
+369
@@ -0,0 +1,369 @@
|
||||
import assertString from './util/assertString';
|
||||
import isInt from './isInt';
|
||||
var validators = {
|
||||
PL: function PL(str) {
|
||||
assertString(str);
|
||||
var weightOfDigits = {
|
||||
1: 1,
|
||||
2: 3,
|
||||
3: 7,
|
||||
4: 9,
|
||||
5: 1,
|
||||
6: 3,
|
||||
7: 7,
|
||||
8: 9,
|
||||
9: 1,
|
||||
10: 3,
|
||||
11: 0
|
||||
};
|
||||
|
||||
if (str != null && str.length === 11 && isInt(str, {
|
||||
allow_leading_zeroes: true
|
||||
})) {
|
||||
var digits = str.split('').slice(0, -1);
|
||||
var sum = digits.reduce(function (acc, digit, index) {
|
||||
return acc + Number(digit) * weightOfDigits[index + 1];
|
||||
}, 0);
|
||||
var modulo = sum % 10;
|
||||
var lastDigit = Number(str.charAt(str.length - 1));
|
||||
|
||||
if (modulo === 0 && lastDigit === 0 || lastDigit === 10 - modulo) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
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
|
||||
|
||||
if (!DNI.test(sanitized)) {
|
||||
return false;
|
||||
} // validate the control digit
|
||||
|
||||
|
||||
var number = sanitized.slice(0, -1).replace(/[X,Y,Z]/g, function (_char) {
|
||||
return charsValue[_char];
|
||||
});
|
||||
return sanitized.endsWith(controlDigits[number % 23]);
|
||||
},
|
||||
FI: function FI(str) {
|
||||
// https://dvv.fi/en/personal-identity-code#:~:text=control%20character%20for%20a-,personal,-identity%20code%20calculated
|
||||
assertString(str);
|
||||
|
||||
if (str.length !== 11) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!str.match(/^\d{6}[\-A\+]\d{3}[0-9ABCDEFHJKLMNPRSTUVWXY]{1}$/)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var checkDigits = '0123456789ABCDEFHJKLMNPRSTUVWXY';
|
||||
var idAsNumber = parseInt(str.slice(0, 6), 10) * 1000 + parseInt(str.slice(7, 10), 10);
|
||||
var remainder = idAsNumber % 31;
|
||||
var checkDigit = checkDigits[remainder];
|
||||
return checkDigit === str.slice(10, 11);
|
||||
},
|
||||
IN: function IN(str) {
|
||||
var DNI = /^[1-9]\d{3}\s?\d{4}\s?\d{4}$/; // multiplication table
|
||||
|
||||
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 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
|
||||
|
||||
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;
|
||||
},
|
||||
IR: function IR(str) {
|
||||
if (!str.match(/^\d{10}$/)) return false;
|
||||
str = "0000".concat(str).substr(str.length - 6);
|
||||
if (parseInt(str.substr(3, 6), 10) === 0) return false;
|
||||
var lastNumber = parseInt(str.substr(9, 1), 10);
|
||||
var sum = 0;
|
||||
|
||||
for (var i = 0; i < 9; i++) {
|
||||
sum += parseInt(str.substr(i, 1), 10) * (10 - i);
|
||||
}
|
||||
|
||||
sum %= 11;
|
||||
return sum < 2 && lastNumber === sum || sum >= 2 && lastNumber === 11 - sum;
|
||||
},
|
||||
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;
|
||||
},
|
||||
TH: function TH(str) {
|
||||
if (!str.match(/^[1-8]\d{12}$/)) return false; // validate check digit
|
||||
|
||||
var sum = 0;
|
||||
|
||||
for (var i = 0; i < 12; i++) {
|
||||
sum += parseInt(str[i], 10) * (13 - i);
|
||||
}
|
||||
|
||||
return str[12] === ((11 - sum % 11) % 10).toString();
|
||||
},
|
||||
LK: function LK(str) {
|
||||
var old_nic = /^[1-9]\d{8}[vx]$/i;
|
||||
var new_nic = /^[1-9]\d{11}$/i;
|
||||
if (str.length === 10 && old_nic.test(str)) return true;else if (str.length === 12 && new_nic.test(str)) return true;
|
||||
return false;
|
||||
},
|
||||
'he-IL': function heIL(str) {
|
||||
var DNI = /^\d{9}$/; // sanitize user input
|
||||
|
||||
var sanitized = str.trim(); // validate the data structure
|
||||
|
||||
if (!DNI.test(sanitized)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var id = sanitized;
|
||||
var sum = 0,
|
||||
incNum;
|
||||
|
||||
for (var i = 0; i < id.length; i++) {
|
||||
incNum = Number(id[i]) * (i % 2 + 1); // Multiply number by 1 or 2
|
||||
|
||||
sum += incNum > 9 ? incNum - 9 : incNum; // Sum the digits up and add to total
|
||||
}
|
||||
|
||||
return sum % 10 === 0;
|
||||
},
|
||||
'ar-LY': function arLY(str) {
|
||||
// Libya National Identity Number NIN is 12 digits, the first digit is either 1 or 2
|
||||
var NIN = /^(1|2)\d{11}$/; // sanitize user input
|
||||
|
||||
var sanitized = str.trim(); // validate the data structure
|
||||
|
||||
if (!NIN.test(sanitized)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
'ar-TN': function arTN(str) {
|
||||
var DNI = /^\d{8}$/; // sanitize user input
|
||||
|
||||
var sanitized = str.trim(); // validate the data structure
|
||||
|
||||
if (!DNI.test(sanitized)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
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 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);
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
return sum + Number(number) * (9 - index);
|
||||
}, 0);
|
||||
}
|
||||
};
|
||||
export default 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
throw new Error("Invalid locale '".concat(locale, "'"));
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
import assertString from './util/assertString';
|
||||
import toString from './util/toString';
|
||||
export default 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(options[i]);
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
import assertString from './util/assertString';
|
||||
var _int = /^(?:[-+]?(?:0|[1-9][0-9]*))$/;
|
||||
var intLeadingZeroes = /^[-+]?[0-9]+$/;
|
||||
export default 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 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;
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
import assertString from './util/assertString';
|
||||
import merge from './util/merge';
|
||||
var default_json_options = {
|
||||
allow_primitives: false
|
||||
};
|
||||
export default 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;
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
import assertString from './util/assertString';
|
||||
import isBase64 from './isBase64';
|
||||
export default function isJWT(str) {
|
||||
assertString(str);
|
||||
var dotSplit = str.split('.');
|
||||
var len = dotSplit.length;
|
||||
|
||||
if (len > 3 || len < 2) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return dotSplit.reduce(function (acc, currElem) {
|
||||
return acc && isBase64(currElem, {
|
||||
urlSafe: true
|
||||
});
|
||||
}, true);
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
import assertString from './util/assertString';
|
||||
import merge from './util/merge';
|
||||
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
|
||||
};
|
||||
export default 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]);
|
||||
}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
import assertString from './util/assertString';
|
||||
/* eslint-disable prefer-rest-params */
|
||||
|
||||
export default 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);
|
||||
}
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
import assertString from './util/assertString';
|
||||
var validators = {
|
||||
'cs-CZ': function csCZ(str) {
|
||||
return /^(([ABCDEFHKIJKLMNPRSTUVXYZ]|[0-9])-?){5,8}$/.test(str);
|
||||
},
|
||||
'de-DE': function deDE(str) {
|
||||
return /^((AW|UL|AK|GA|AÖ|LF|AZ|AM|AS|ZE|AN|AB|A|KG|KH|BA|EW|BZ|HY|KM|BT|HP|B|BC|BI|BO|FN|TT|ÜB|BN|AH|BS|FR|HB|ZZ|BB|BK|BÖ|OC|OK|CW|CE|C|CO|LH|CB|KW|LC|LN|DA|DI|DE|DH|SY|NÖ|DO|DD|DU|DN|D|EI|EA|EE|FI|EM|EL|EN|PF|ED|EF|ER|AU|ZP|E|ES|NT|EU|FL|FO|FT|FF|F|FS|FD|FÜ|GE|G|GI|GF|GS|ZR|GG|GP|GR|NY|ZI|GÖ|GZ|GT|HA|HH|HM|HU|WL|HZ|WR|RN|HK|HD|HN|HS|GK|HE|HF|RZ|HI|HG|HO|HX|IK|IL|IN|J|JL|KL|KA|KS|KF|KE|KI|KT|KO|KN|KR|KC|KU|K|LD|LL|LA|L|OP|LM|LI|LB|LU|LÖ|HL|LG|MD|GN|MZ|MA|ML|MR|MY|AT|DM|MC|NZ|RM|RG|MM|ME|MB|MI|FG|DL|HC|MW|RL|MK|MG|MÜ|WS|MH|M|MS|NU|NB|ND|NM|NK|NW|NR|NI|NF|DZ|EB|OZ|TG|TO|N|OA|GM|OB|CA|EH|FW|OF|OL|OE|OG|BH|LR|OS|AA|GD|OH|KY|NP|WK|PB|PA|PE|PI|PS|P|PM|PR|RA|RV|RE|R|H|SB|WN|RS|RD|RT|BM|NE|GV|RP|SU|GL|RO|GÜ|RH|EG|RW|PN|SK|MQ|RU|SZ|RI|SL|SM|SC|HR|FZ|VS|SW|SN|CR|SE|SI|SO|LP|SG|NH|SP|IZ|ST|BF|TE|HV|OD|SR|S|AC|DW|ZW|TF|TS|TR|TÜ|UM|PZ|TP|UE|UN|UH|MN|KK|VB|V|AE|PL|RC|VG|GW|PW|VR|VK|KB|WA|WT|BE|WM|WE|AP|MO|WW|FB|WZ|WI|WB|JE|WF|WO|W|WÜ|BL|Z|GC)[- ]?[A-Z]{1,2}[- ]?\d{1,4}|(AIC|FDB|ABG|SLN|SAW|KLZ|BUL|ESB|NAB|SUL|WST|ABI|AZE|BTF|KÖT|DKB|FEU|ROT|ALZ|SMÜ|WER|AUR|NOR|DÜW|BRK|HAB|TÖL|WOR|BAD|BAR|BER|BIW|EBS|KEM|MÜB|PEG|BGL|BGD|REI|WIL|BKS|BIR|WAT|BOR|BOH|BOT|BRB|BLK|HHM|NEB|NMB|WSF|LEO|HDL|WMS|WZL|BÜS|CHA|KÖZ|ROD|WÜM|CLP|NEC|COC|ZEL|COE|CUX|DAH|LDS|DEG|DEL|RSL|DLG|DGF|LAN|HEI|MED|DON|KIB|ROK|JÜL|MON|SLE|EBE|EIC|HIG|WBS|BIT|PRÜ|LIB|EMD|WIT|ERH|HÖS|ERZ|ANA|ASZ|MAB|MEK|STL|SZB|FDS|HCH|HOR|WOL|FRG|GRA|WOS|FRI|FFB|GAP|GER|BRL|CLZ|GTH|NOH|HGW|GRZ|LÖB|NOL|WSW|DUD|HMÜ|OHA|KRU|HAL|HAM|HBS|QLB|HVL|NAU|HAS|EBN|GEO|HOH|HDH|ERK|HER|WAN|HEF|ROF|HBN|ALF|HSK|USI|NAI|REH|SAN|KÜN|ÖHR|HOL|WAR|ARN|BRG|GNT|HOG|WOH|KEH|MAI|PAR|RID|ROL|KLE|GEL|KUS|KYF|ART|SDH|LDK|DIL|MAL|VIB|LER|BNA|GHA|GRM|MTL|WUR|LEV|LIF|STE|WEL|LIP|VAI|LUP|HGN|LBZ|LWL|PCH|STB|DAN|MKK|SLÜ|MSP|TBB|MGH|MTK|BIN|MSH|EIL|HET|SGH|BID|MYK|MSE|MST|MÜR|WRN|MEI|GRH|RIE|MZG|MIL|OBB|BED|FLÖ|MOL|FRW|SEE|SRB|AIB|MOS|BCH|ILL|SOB|NMS|NEA|SEF|UFF|NEW|VOH|NDH|TDO|NWM|GDB|GVM|WIS|NOM|EIN|GAN|LAU|HEB|OHV|OSL|SFB|ERB|LOS|BSK|KEL|BSB|MEL|WTL|OAL|FÜS|MOD|OHZ|OPR|BÜR|PAF|PLÖ|CAS|GLA|REG|VIT|ECK|SIM|GOA|EMS|DIZ|GOH|RÜD|SWA|NES|KÖN|MET|LRO|BÜZ|DBR|ROS|TET|HRO|ROW|BRV|HIP|PAN|GRI|SHK|EIS|SRO|SOK|LBS|SCZ|MER|QFT|SLF|SLS|HOM|SLK|ASL|BBG|SBK|SFT|SHG|MGN|MEG|ZIG|SAD|NEN|OVI|SHA|BLB|SIG|SON|SPN|FOR|GUB|SPB|IGB|WND|STD|STA|SDL|OBG|HST|BOG|SHL|PIR|FTL|SEB|SÖM|SÜW|TIR|SAB|TUT|ANG|SDT|LÜN|LSZ|MHL|VEC|VER|VIE|OVL|ANK|OVP|SBG|UEM|UER|WLG|GMN|NVP|RDG|RÜG|DAU|FKB|WAF|WAK|SLZ|WEN|SOG|APD|WUG|GUN|ESW|WIZ|WES|DIN|BRA|BÜD|WHV|HWI|GHC|WTM|WOB|WUN|MAK|SEL|OCH|HOT|WDA)[- ]?(([A-Z][- ]?\d{1,4})|([A-Z]{2}[- ]?\d{1,3})))[- ]?(E|H)?$/.test(str);
|
||||
},
|
||||
'de-LI': function deLI(str) {
|
||||
return /^FL[- ]?\d{1,5}[UZ]?$/.test(str);
|
||||
},
|
||||
'fi-FI': function fiFI(str) {
|
||||
return /^(?=.{4,7})(([A-Z]{1,3}|[0-9]{1,3})[\s-]?([A-Z]{1,3}|[0-9]{1,5}))$/.test(str);
|
||||
},
|
||||
'pt-PT': function ptPT(str) {
|
||||
return /^([A-Z]{2}|[0-9]{2})[ -·]?([A-Z]{2}|[0-9]{2})[ -·]?([A-Z]{2}|[0-9]{2})$/.test(str);
|
||||
},
|
||||
'sq-AL': function sqAL(str) {
|
||||
return /^[A-Z]{2}[- ]?((\d{3}[- ]?(([A-Z]{2})|T))|(R[- ]?\d{3}))$/.test(str);
|
||||
},
|
||||
'pt-BR': function ptBR(str) {
|
||||
return /^[A-Z]{3}[ -]?[0-9][A-Z][0-9]{2}|[A-Z]{3}[ -]?[0-9]{4}$/.test(str);
|
||||
}
|
||||
};
|
||||
export default function isLicensePlate(str, locale) {
|
||||
assertString(str);
|
||||
|
||||
if (locale in validators) {
|
||||
return validators[locale](str);
|
||||
} else if (locale === 'any') {
|
||||
for (var key in validators) {
|
||||
/* eslint guard-for-in: 0 */
|
||||
var validator = validators[key];
|
||||
|
||||
if (validator(str)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
throw new Error("Invalid locale '".concat(locale, "'"));
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import assertString from './util/assertString';
|
||||
var localeReg = /^[A-Za-z]{2,4}([_-]([A-Za-z]{4}|[\d]{3}))?([_-]([A-Za-z]{2}|[\d]{3}))?$/;
|
||||
export default function isLocale(str) {
|
||||
assertString(str);
|
||||
|
||||
if (str === 'en_US_POSIX' || str === 'ca_ES_VALENCIA') {
|
||||
return true;
|
||||
}
|
||||
|
||||
return localeReg.test(str);
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function isLowercase(str) {
|
||||
assertString(str);
|
||||
return str === str.toLowerCase();
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
import assertString from './util/assertString';
|
||||
var macAddress = /^(?:[0-9a-fA-F]{2}([-:\s]))([0-9a-fA-F]{2}\1){4}([0-9a-fA-F]{2})$/;
|
||||
var macAddressNoSeparators = /^([0-9a-fA-F]){12}$/;
|
||||
var macAddressWithDots = /^([0-9a-fA-F]{4}\.){2}([0-9a-fA-F]{4})$/;
|
||||
export default function isMACAddress(str, options) {
|
||||
assertString(str);
|
||||
/**
|
||||
* @deprecated `no_colons` TODO: remove it in the next major
|
||||
*/
|
||||
|
||||
if (options && (options.no_colons || options.no_separators)) {
|
||||
return macAddressNoSeparators.test(str);
|
||||
}
|
||||
|
||||
return macAddress.test(str) || macAddressWithDots.test(str);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var md5 = /^[a-f0-9]{32}$/;
|
||||
export default function isMD5(str) {
|
||||
assertString(str);
|
||||
return md5.test(str);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var magnetURI = /^magnet:\?xt(?:\.1)?=urn:(?:aich|bitprint|btih|ed2k|ed2khash|kzhash|md5|sha1|tree:tiger):[a-z0-9]{32}(?:[a-z0-9]{8})?($|&)/i;
|
||||
export default function isMagnetURI(url) {
|
||||
assertString(url);
|
||||
return magnetURI.test(url.trim());
|
||||
}
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
import assertString from './util/assertString';
|
||||
/*
|
||||
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
|
||||
|
||||
export default function isMimeType(str) {
|
||||
assertString(str);
|
||||
return mimeTypeSimple.test(str) || mimeTypeText.test(str) || mimeTypeMultipart.test(str);
|
||||
}
|
||||
+187
@@ -0,0 +1,187 @@
|
||||
import assertString from './util/assertString';
|
||||
/* 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-MA': /^(?:(?:\+|00)212|0)[5-7]\d{8}$/,
|
||||
'ar-OM': /^((\+|00)968)?(9[1-9])\d{6}$/,
|
||||
'ar-PS': /^(\+?970|0)5[6|9](\d{7})$/,
|
||||
'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}$/,
|
||||
'ca-AD': /^(\+376)?[346]\d{5}$/,
|
||||
'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,9}$/,
|
||||
'de-AT': /^(\+43|0)\d{1,4}\d{3,12}$/,
|
||||
'de-CH': /^(\+41|0)([1-9])\d{1,9}$/,
|
||||
'de-LU': /^(\+352)?((6\d1)\d{6})$/,
|
||||
'dv-MV': /^(\+?960)?(7[2-9]|91|9[3-9])\d{7}$/,
|
||||
'el-GR': /^(\+?30|0)?(69\d{8})$/,
|
||||
'en-AU': /^(\+?61|0)4\d{8}$/,
|
||||
'en-BM': /^(\+?1)?441(((3|7)\d{6}$)|(5[0-3][0-9]\d{4}$)|(59\d{5}))/,
|
||||
'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|55|59)\d{7}$/,
|
||||
'en-GY': /^(\+592|0)6\d{6}$/,
|
||||
'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-KI': /^((\+686|686)?)?( )?((6|7)(2|3|8)[0-9]{6})$/,
|
||||
'en-MT': /^(\+?356|0)?(99|79|77|21|27|22|25)[0-9]{6}$/,
|
||||
'en-MU': /^(\+?230|0)?\d{8}$/,
|
||||
'en-NA': /^(\+?264|0)(6|8)\d{7}$/,
|
||||
'en-NG': /^(\+?234|0)?[789]\d{9}$/,
|
||||
'en-NZ': /^(\+?64|0)[28]\d{7,9}$/,
|
||||
'en-PK': /^((00|\+)?92|0)3[0-6]\d{8}$/,
|
||||
'en-PH': /^(09|\+639)\d{9}$/,
|
||||
'en-RW': /^(\+?250|0)?[7]\d{8}$/,
|
||||
'en-SG': /^(\+65)?[3689]\d{7}$/,
|
||||
'en-SL': /^(\+?232|0)\d{8}$/,
|
||||
'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}$/,
|
||||
'en-BW': /^(\+?267)?(7[1-8]{1})\d{6}$/,
|
||||
'es-AR': /^\+?549(11|[2368]\d)\d{8}$/,
|
||||
'es-BO': /^(\+?591)?(6|7)\d{7}$/,
|
||||
'es-CO': /^(\+?57)?3(0(0|1|2|4|5)|1\d|2[0-4]|5(0|1))\d{7}$/,
|
||||
'es-CL': /^(\+?56|0)[2-9]\d{1}\d{7}$/,
|
||||
'es-CR': /^(\+506)?[2-8]\d{7}$/,
|
||||
'es-CU': /^(\+53|0053)?5\d{7}/,
|
||||
'es-DO': /^(\+?1)?8[024]9\d{7}$/,
|
||||
'es-HN': /^(\+?504)?[9|8]\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-SV': /^(\+?503)?[67]\d{7}$/,
|
||||
'es-UY': /^(\+598|0)9[1-9][\d]{6}$/,
|
||||
'es-VE': /^(\+?58)?(2|4)\d{9}$/,
|
||||
'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-BF': /^(\+226|0)[67]\d{7}$/,
|
||||
'fr-CM': /^(\+?237)6[0-9]{8}$/,
|
||||
'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-PF': /^(\+?689)?8[789]\d{6}$/,
|
||||
'fr-RE': /^(\+?262|0|00262)[67]\d{8}$/,
|
||||
'he-IL': /^(\+972|0)([23489]|5[012345689]|77)[1-9]\d{6}$/,
|
||||
'hu-HU': /^(\+?36|06)(20|30|31|50|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}$/,
|
||||
'it-SM': /^((\+378)|(0549)|(\+390549)|(\+3780549))?6\d{5,9}$/,
|
||||
'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}$/,
|
||||
'lv-LV': /^(\+?371)2\d{7}$/,
|
||||
'ms-MY': /^(\+?6?01){1}(([0145]{1}(\-|\s)?\d{7,8})|([236789]{1}(\s|\-)?\d{7}))$/,
|
||||
'mz-MZ': /^(\+?258)?8[234567]\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': /^((\+?55\ ?[1-9]{2}\ ?)|(\+?55\ ?\([1-9]{2}\)\ ?)|(0[1-9]{2}\ ?)|(\([1-9]{2}\)\ ?)|([1-9]{2}\ ?))((\d{4}\-?\d{4})|(9[2-9]{1}\d{3}\-?\d{4}))$/,
|
||||
'pt-PT': /^(\+?351)?9[1236]\d{7}$/,
|
||||
'pt-AO': /^(\+244)\d{9}$/,
|
||||
'ro-RO': /^(\+?4?0)\s?7\d{2}(\/|\s|\.|\-)?\d{3}(\s|\.|\-)?\d{3}$/,
|
||||
'ru-RU': /^(\+?7|8)?9\d{9}$/,
|
||||
'si-LK': /^(?:0|94|\+94)?(7(0|1|2|4|5|6|7|8)( |-)?)\d{7}$/,
|
||||
'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}$/,
|
||||
'sq-AL': /^(\+355|0)6[789]\d{6}$/,
|
||||
'sr-RS': /^(\+3816|06)[- \d]{5,9}$/,
|
||||
'sv-SE': /^(\+?46|0)[\s\-]?7[\s\-]?[02369]([\s\-]?\d){7}$/,
|
||||
'tg-TJ': /^(\+?992)?[5][5]\d{7}$/,
|
||||
'th-TH': /^(\+66|66|0)\d{9}$/,
|
||||
'tr-TR': /^(\+?90|0)?5\d{9}$/,
|
||||
'tk-TM': /^(\+993|993|8)\d{8}$/,
|
||||
'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([25689]))|(7([0|6-9]))|(8([1-9]))|(9([0-9])))([0-9]{7})$/,
|
||||
'zh-CN': /^((\+|00)86)?(1[3-9]|9[28])\d{9}$/,
|
||||
'zh-TW': /^(\+?886\-?|0)?9\d{8}$/,
|
||||
'dz-BT': /^(\+?975|0)?(17|16|77|02)\d{6}$/
|
||||
};
|
||||
/* eslint-enable max-len */
|
||||
// aliases
|
||||
|
||||
phones['en-CA'] = phones['en-US'];
|
||||
phones['fr-CA'] = phones['en-CA'];
|
||||
phones['fr-BE'] = phones['nl-BE'];
|
||||
phones['zh-HK'] = phones['en-HK'];
|
||||
phones['zh-MO'] = phones['en-MO'];
|
||||
phones['ga-IE'] = phones['en-IE'];
|
||||
phones['fr-CH'] = phones['de-CH'];
|
||||
phones['it-CH'] = phones['fr-CH'];
|
||||
export default 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;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
throw new Error("Invalid locale '".concat(locale, "'"));
|
||||
}
|
||||
export var locales = Object.keys(phones);
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
import isHexadecimal from './isHexadecimal';
|
||||
export default function isMongoId(str) {
|
||||
assertString(str);
|
||||
return isHexadecimal(str) && str.length === 24;
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import assertString from './util/assertString';
|
||||
/* eslint-disable no-control-regex */
|
||||
|
||||
var multibyte = /[^\x00-\x7F]/;
|
||||
/* eslint-enable no-control-regex */
|
||||
|
||||
export default function isMultibyte(str) {
|
||||
assertString(str);
|
||||
return multibyte.test(str);
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
import assertString from './util/assertString';
|
||||
import { decimal } from './alpha';
|
||||
var numericNoSymbols = /^[0-9]+$/;
|
||||
export default function isNumeric(str, options) {
|
||||
assertString(str);
|
||||
|
||||
if (options && options.no_symbols) {
|
||||
return numericNoSymbols.test(str);
|
||||
}
|
||||
|
||||
return new RegExp("^[+-]?([0-9]*[".concat((options || {}).locale ? decimal[options.locale] : '.', "])?[0-9]+$")).test(str);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var octal = /^(0o)?[0-7]+$/i;
|
||||
export default function isOctal(str) {
|
||||
assertString(str);
|
||||
return octal.test(str);
|
||||
}
|
||||
+126
@@ -0,0 +1,126 @@
|
||||
import assertString from './util/assertString';
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
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
|
||||
BR: /^[A-Z]{2}\d{6}$/,
|
||||
// BRAZIL
|
||||
BY: /^[A-Z]{2}\d{7}$/,
|
||||
// BELARUS
|
||||
CA: /^[A-Z]{2}\d{6}$/,
|
||||
// CANADA
|
||||
CH: /^[A-Z]\d{7}$/,
|
||||
// SWITZERLAND
|
||||
CN: /^G\d{8}$|^E(?![IO])[A-Z0-9]\d{7}$/,
|
||||
// CHINA [G=Ordinary, E=Electronic] followed by 8-digits, or E followed by any UPPERCASE letter (except I and O) followed by 7 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
|
||||
ID: /^[A-C]\d{7}$/,
|
||||
// INDONESIA
|
||||
IR: /^[A-Z]\d{8}$/,
|
||||
// IRAN
|
||||
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
|
||||
LY: /^[A-Z0-9]{8}$/,
|
||||
// LIBYA
|
||||
MT: /^\d{7}$/,
|
||||
// MALTA
|
||||
MZ: /^([A-Z]{2}\d{7})|(\d{2}[A-Z]{2}\d{5})$/,
|
||||
// MOZAMBIQUE
|
||||
MY: /^[AHK]\d{8}$/,
|
||||
// MALAYSIA
|
||||
NL: /^[A-Z]{2}[A-Z0-9]{6}\d$/,
|
||||
// NETHERLANDS
|
||||
PL: /^[A-Z]{2}\d{7}$/,
|
||||
// POLAND
|
||||
PT: /^[A-Z]\d{6}$/,
|
||||
// PORTUGAL
|
||||
RO: /^\d{8,9}$/,
|
||||
// ROMANIA
|
||||
RU: /^\d{9}$/,
|
||||
// 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}
|
||||
*/
|
||||
|
||||
export default 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);
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import isInt from './isInt';
|
||||
export default function isPort(str) {
|
||||
return isInt(str, {
|
||||
min: 0,
|
||||
max: 65535
|
||||
});
|
||||
}
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
import assertString from './util/assertString'; // common patterns
|
||||
|
||||
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,
|
||||
CN: /^(0[1-7]|1[012356]|2[0-7]|3[0-6]|4[0-7]|5[1-7]|6[1-7]|7[1-5]|8[1345]|9[09])\d{4}$/,
|
||||
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-Za-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})$/,
|
||||
IR: /\b(?!(\d)\1{3})[13-9]{4}[1346-9][013-9]{5}\b/,
|
||||
IS: threeDigit,
|
||||
IT: fiveDigit,
|
||||
JP: /^\d{3}\-\d{4}$/,
|
||||
KE: fiveDigit,
|
||||
KR: /^(\d{5}|\d{6})$/,
|
||||
LI: /^(948[5-9]|949[0-7])$/,
|
||||
LT: /^LT\-\d{5}$/,
|
||||
LU: fourDigit,
|
||||
LV: /^LV\-\d{4}$/,
|
||||
LK: fiveDigit,
|
||||
MX: fiveDigit,
|
||||
MT: /^[A-Za-z]{3}\s{0,1}\d{4}$/,
|
||||
MY: fiveDigit,
|
||||
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}$/,
|
||||
SG: sixDigit,
|
||||
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
|
||||
};
|
||||
export var locales = Object.keys(patterns);
|
||||
export default 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 (pattern.test(str)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
throw new Error("Invalid locale '".concat(locale, "'"));
|
||||
}
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
import assertString from './util/assertString';
|
||||
/* 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, "$"));
|
||||
export default function isRFC3339(str) {
|
||||
assertString(str);
|
||||
return rfc3339.test(str);
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
import assertString from './util/assertString';
|
||||
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)?)\)/;
|
||||
export default 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);
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import assertString from './util/assertString';
|
||||
import multilineRegexp from './util/multilineRegex';
|
||||
/**
|
||||
* 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');
|
||||
export default function isSemVer(str) {
|
||||
assertString(str);
|
||||
return semanticVersioningRegex.test(str);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var charsetRegex = /^[^\s-_](?!.*?[-_]{2,})[a-z0-9-\\][^\s]*[^-_\s]$/;
|
||||
export default function isSlug(str) {
|
||||
assertString(str);
|
||||
return charsetRegex.test(str);
|
||||
}
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
import merge from './util/merge';
|
||||
import assertString from './util/assertString';
|
||||
var upperCaseRegex = /^[A-Z]$/;
|
||||
var lowerCaseRegex = /^[a-z]$/;
|
||||
var numberRegex = /^[0-9]$/;
|
||||
var symbolRegex = /^[-#!$@%^&*()_+|~=`{}\[\]:";'<>?,.\/ ]$/;
|
||||
var defaultOptions = {
|
||||
minLength: 8,
|
||||
minLowercase: 1,
|
||||
minUppercase: 1,
|
||||
minNumbers: 1,
|
||||
minSymbols: 1,
|
||||
returnScore: false,
|
||||
pointsPerUnique: 1,
|
||||
pointsPerRepeat: 0.5,
|
||||
pointsForContainingLower: 10,
|
||||
pointsForContainingUpper: 10,
|
||||
pointsForContainingNumber: 10,
|
||||
pointsForContainingSymbol: 10
|
||||
};
|
||||
/* Counts number of occurrences of each char in a string
|
||||
* could be moved to util/ ?
|
||||
*/
|
||||
|
||||
function countChars(str) {
|
||||
var result = {};
|
||||
Array.from(str).forEach(function (_char) {
|
||||
var curVal = result[_char];
|
||||
|
||||
if (curVal) {
|
||||
result[_char] += 1;
|
||||
} else {
|
||||
result[_char] = 1;
|
||||
}
|
||||
});
|
||||
return result;
|
||||
}
|
||||
/* Return information about a password */
|
||||
|
||||
|
||||
function analyzePassword(password) {
|
||||
var charMap = countChars(password);
|
||||
var analysis = {
|
||||
length: password.length,
|
||||
uniqueChars: Object.keys(charMap).length,
|
||||
uppercaseCount: 0,
|
||||
lowercaseCount: 0,
|
||||
numberCount: 0,
|
||||
symbolCount: 0
|
||||
};
|
||||
Object.keys(charMap).forEach(function (_char2) {
|
||||
/* istanbul ignore else */
|
||||
if (upperCaseRegex.test(_char2)) {
|
||||
analysis.uppercaseCount += charMap[_char2];
|
||||
} else if (lowerCaseRegex.test(_char2)) {
|
||||
analysis.lowercaseCount += charMap[_char2];
|
||||
} else if (numberRegex.test(_char2)) {
|
||||
analysis.numberCount += charMap[_char2];
|
||||
} else if (symbolRegex.test(_char2)) {
|
||||
analysis.symbolCount += charMap[_char2];
|
||||
}
|
||||
});
|
||||
return analysis;
|
||||
}
|
||||
|
||||
function scorePassword(analysis, scoringOptions) {
|
||||
var points = 0;
|
||||
points += analysis.uniqueChars * scoringOptions.pointsPerUnique;
|
||||
points += (analysis.length - analysis.uniqueChars) * scoringOptions.pointsPerRepeat;
|
||||
|
||||
if (analysis.lowercaseCount > 0) {
|
||||
points += scoringOptions.pointsForContainingLower;
|
||||
}
|
||||
|
||||
if (analysis.uppercaseCount > 0) {
|
||||
points += scoringOptions.pointsForContainingUpper;
|
||||
}
|
||||
|
||||
if (analysis.numberCount > 0) {
|
||||
points += scoringOptions.pointsForContainingNumber;
|
||||
}
|
||||
|
||||
if (analysis.symbolCount > 0) {
|
||||
points += scoringOptions.pointsForContainingSymbol;
|
||||
}
|
||||
|
||||
return points;
|
||||
}
|
||||
|
||||
export default function isStrongPassword(str) {
|
||||
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
||||
assertString(str);
|
||||
var analysis = analyzePassword(str);
|
||||
options = merge(options || {}, defaultOptions);
|
||||
|
||||
if (options.returnScore) {
|
||||
return scorePassword(analysis, options);
|
||||
}
|
||||
|
||||
return analysis.length >= options.minLength && analysis.lowercaseCount >= options.minLowercase && analysis.uppercaseCount >= options.minUppercase && analysis.numberCount >= options.minNumbers && analysis.symbolCount >= options.minSymbols;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var surrogatePair = /[\uD800-\uDBFF][\uDC00-\uDFFF]/;
|
||||
export default function isSurrogatePair(str) {
|
||||
assertString(str);
|
||||
return surrogatePair.test(str);
|
||||
}
|
||||
+1508
File diff suppressed because it is too large
Load Diff
+193
@@ -0,0 +1,193 @@
|
||||
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
||||
|
||||
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 _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 _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 _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
||||
|
||||
import assertString from './util/assertString';
|
||||
import isFQDN from './isFQDN';
|
||||
import isIP from './isIP';
|
||||
import merge from './util/merge';
|
||||
/*
|
||||
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,
|
||||
allow_fragments: true,
|
||||
allow_query_components: true,
|
||||
validate_length: true
|
||||
};
|
||||
var wrapped_ipv6 = /^\[([^\]]+)\](?::([0-9]+))?$/;
|
||||
|
||||
function isRegExp(obj) {
|
||||
return Object.prototype.toString.call(obj) === '[object RegExp]';
|
||||
}
|
||||
|
||||
function checkHost(host, matches) {
|
||||
for (var i = 0; i < matches.length; i++) {
|
||||
var match = matches[i];
|
||||
|
||||
if (host === match || isRegExp(match) && match.test(host)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
export default function isURL(url, options) {
|
||||
assertString(url);
|
||||
|
||||
if (!url || /[\s<>]/.test(url)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (url.indexOf('mailto:') === 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
options = merge(options, default_url_options);
|
||||
|
||||
if (options.validate_length && url.length >= 2083) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!options.allow_fragments && url.includes('#')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!options.allow_query_components && (url.includes('?') || url.includes('&'))) {
|
||||
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('://');
|
||||
|
||||
if (split.length > 1) {
|
||||
protocol = split.shift().toLowerCase();
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
split[0] = url.substr(2);
|
||||
}
|
||||
|
||||
url = split.join('://');
|
||||
|
||||
if (url === '') {
|
||||
return false;
|
||||
}
|
||||
|
||||
split = url.split('/');
|
||||
url = split.shift();
|
||||
|
||||
if (url === '' && !options.require_host) {
|
||||
return true;
|
||||
}
|
||||
|
||||
split = url.split('@');
|
||||
|
||||
if (split.length > 1) {
|
||||
if (options.disallow_auth) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (split[0] === '') {
|
||||
return false;
|
||||
}
|
||||
|
||||
auth = split.shift();
|
||||
|
||||
if (auth.indexOf(':') >= 0 && auth.split(':').length > 2) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var _auth$split = auth.split(':'),
|
||||
_auth$split2 = _slicedToArray(_auth$split, 2),
|
||||
user = _auth$split2[0],
|
||||
password = _auth$split2[1];
|
||||
|
||||
if (user === '' && password === '') {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
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 (split.length) {
|
||||
port_str = split.join(':');
|
||||
}
|
||||
}
|
||||
|
||||
if (port_str !== null && port_str.length > 0) {
|
||||
port = parseInt(port_str, 10);
|
||||
|
||||
if (!/^[0-9]+$/.test(port_str) || port <= 0 || port > 65535) {
|
||||
return false;
|
||||
}
|
||||
} else if (options.require_port) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (options.host_whitelist) {
|
||||
return checkHost(host, options.host_whitelist);
|
||||
}
|
||||
|
||||
if (!isIP(host) && !isFQDN(host, options) && (!ipv6 || !isIP(ipv6, 6))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
host = host || ipv6;
|
||||
|
||||
if (options.host_blacklist && checkHost(host, options.host_blacklist)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import assertString from './util/assertString';
|
||||
var uuid = {
|
||||
1: /^[0-9A-F]{8}-[0-9A-F]{4}-1[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,
|
||||
2: /^[0-9A-F]{8}-[0-9A-F]{4}-2[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i,
|
||||
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
|
||||
};
|
||||
export default function isUUID(str, version) {
|
||||
assertString(str);
|
||||
var pattern = uuid[![undefined, null].includes(version) ? version : 'all'];
|
||||
return !!pattern && pattern.test(str);
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function isUppercase(str) {
|
||||
assertString(str);
|
||||
return str === str.toUpperCase();
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
import assertString from './util/assertString';
|
||||
export var vatMatchers = {
|
||||
GB: /^GB((\d{3} \d{4} ([0-8][0-9]|9[0-6]))|(\d{9} \d{3})|(((GD[0-4])|(HA[5-9]))[0-9]{2}))$/,
|
||||
IT: /^(IT)?[0-9]{11}$/,
|
||||
NL: /^(NL)?[0-9]{9}B[0-9]{2}$/
|
||||
};
|
||||
export default function isVAT(str, countryCode) {
|
||||
assertString(str);
|
||||
assertString(countryCode);
|
||||
|
||||
if (countryCode in vatMatchers) {
|
||||
return vatMatchers[countryCode].test(str);
|
||||
}
|
||||
|
||||
throw new Error("Invalid country code: '".concat(countryCode, "'"));
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import assertString from './util/assertString';
|
||||
import { fullWidth } from './isFullWidth';
|
||||
import { halfWidth } from './isHalfWidth';
|
||||
export default function isVariableWidth(str) {
|
||||
assertString(str);
|
||||
return fullWidth.test(str) && halfWidth.test(str);
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function isWhitelisted(str, chars) {
|
||||
assertString(str);
|
||||
|
||||
for (var i = str.length - 1; i >= 0; i--) {
|
||||
if (chars.indexOf(str[i]) === -1) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function ltrim(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, '');
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function matches(str, pattern, modifiers) {
|
||||
assertString(str);
|
||||
|
||||
if (Object.prototype.toString.call(pattern) !== '[object RegExp]') {
|
||||
pattern = new RegExp(pattern, modifiers);
|
||||
}
|
||||
|
||||
return pattern.test(str);
|
||||
}
|
||||
+138
@@ -0,0 +1,138 @@
|
||||
import merge from './util/merge';
|
||||
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 '';
|
||||
}
|
||||
|
||||
export default 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;
|
||||
}
|
||||
|
||||
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 (!parts[0].length) {
|
||||
return false;
|
||||
}
|
||||
|
||||
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 (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();
|
||||
}
|
||||
|
||||
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('@');
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function rtrim(str, chars) {
|
||||
assertString(str);
|
||||
|
||||
if (chars) {
|
||||
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
|
||||
var pattern = new RegExp("[".concat(chars.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), "]+$"), 'g');
|
||||
return str.replace(pattern, '');
|
||||
} // Use a faster and more safe than regex trim method https://blog.stevenlevithan.com/archives/faster-trim-javascript
|
||||
|
||||
|
||||
var strIndex = str.length - 1;
|
||||
|
||||
while (/\s/.test(str.charAt(strIndex))) {
|
||||
strIndex -= 1;
|
||||
}
|
||||
|
||||
return str.slice(0, strIndex + 1);
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import assertString from './util/assertString';
|
||||
import blacklist from './blacklist';
|
||||
export default 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(str, chars);
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function toBoolean(str, strict) {
|
||||
assertString(str);
|
||||
|
||||
if (strict) {
|
||||
return str === '1' || /^true$/i.test(str);
|
||||
}
|
||||
|
||||
return str !== '0' && !/^false$/i.test(str) && str !== '';
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
export default function toDate(date) {
|
||||
assertString(date);
|
||||
date = Date.parse(date);
|
||||
return !isNaN(date) ? new Date(date) : null;
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import isFloat from './isFloat';
|
||||
export default function toFloat(str) {
|
||||
if (!isFloat(str)) return NaN;
|
||||
return parseFloat(str);
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user