包详细信息

validator

validatorjs58.5mMIT13.15.0

String validation and sanitization

validator, validation, validate, sanitization

自述文件

validator.js

NPM version CI Coverage Downloads Backers on Open Collective Sponsors on Open Collective License Gitter

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 validator package as:

npm i validator
yarn add validator
pnpm i validator

No ES6

var validator = require('validator');

validator.isEmail('foo@bar.com'); //=> true

ES6

import validator from 'validator';

Or, import only a subset of the library:

import isEmail from 'validator/lib/isEmail';

Tree-shakeable ES imports

import isEmail from 'validator/es/lib/isEmail';

Client-side usage

The library can be loaded either as a standalone script, or through an AMD-compatible loader

<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 install validator-js

CDN

<script src="https://unpkg.com/validator@latest/validator.min.js"></script>

Validators

Here is a list of the validators currently available.

Validator Description
contains(str, seed [, options]) check if the string contains the seed.

options is an object that defaults to { ignoreCase: false, minOccurrences: 1 }.
Options:
ignoreCase: Ignore case when doing comparison, default false.
minOccurrences: Minimum number of occurrences for the seed in the string. Defaults to 1.
equals(str, comparison) check if the string matches the comparison.
isAbaRouting(str) check if the string is an ABA routing number for US bank account / cheque.
isAfter(str [, options]) check if the string is a date that is after the specified date.

options is an object that defaults to { comparisonDate: Date().toString() }.
Options:
comparisonDate: Date to compare to. Defaults to Date().toString() (now).
isAlpha(str [, locale, options]) check if the string contains only letters (a-zA-Z).

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', 'bn', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'eo', 'es-ES', 'fa-IR', 'fi-FI', 'fr-CA', 'fr-FR', 'he', 'hi-IN', 'hu-HU', 'it-IT', 'kk-KZ', 'ko-KR', 'ja-JP', 'ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'si-LK', 'sl-SI', 'sk-SK', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'th-TH', '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).

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', 'bn', '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', 'eo', 'es-ES', 'fa-IR', 'fi-FI', 'fr-CA', 'fr-FR', 'he', 'hi-IN', 'hu-HU', 'it-IT', 'kk-KZ', 'ko-KR', 'ja-JP','ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'si-LK', 'sl-SI', 'sk-SK', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'th-TH', '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 [, options]) check if the string is base32 encoded. options is optional and defaults to { crockford: false }.
When crockford is true it tests the given base32 encoded string using Crockford's base32 alternative.
isBase58(str) check if the string is base58 encoded.
isBase64(str [, options]) check if the string is base64 encoded. options is optional and defaults to { urlSafe: false }
when urlSafe is true it tests the given base64 encoded string is url safe.
isBefore(str [, date]) check if the string is a date that is before the specified date.
isBIC(str) check if the string is a BIC (Bank Identification Code) or SWIFT code.
isBoolean(str [, options]) check if the string is a boolean.
options is an object which defaults to { loose: false }. If loose 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. (e.g.: ['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.

options is an object which defaults to { min: 0, max: undefined }.
isCreditCard(str [, options]) check if the string is a credit card number.

options is an optional object that can be supplied with the following key(s): provider is an optional key whose value should be a string, and defines the company issuing the credit card. Valid values include ['amex', 'dinersclub', 'discover', 'jcb', 'mastercard', 'unionpay', 'visa'] or blank will check for any provider.
isCurrency(str [, options]) check if the string is a valid currency amount.

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 }.
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.
isDate(str [, options]) check if the string is a valid date. e.g. [2002-07-15, new Date()].

options is an object which can contain the keys format, strictMode and/or delimiters.

format is a string and defaults to YYYY/MM/DD.

strictMode is a boolean and defaults to false. If strictMode is set to true, the validator will reject strings different from format.

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.

options is an object which defaults to {force_decimal: false, decimal_digits: '1,', locale: 'en-US'}.

locale determines 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', 'eo', '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'].
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 is 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.

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, allow_underscores: 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, email addresses without a 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 or regexp, and the part of the email after the @ symbol matches one of the strings defined in it, the validation fails. If host_whitelist is set to an array of strings or regexp, and the part of the email after the @ symbol matches none of the strings defined in it, the validation fails.
isEmpty(str [, options]) check if the string has a length of zero.

options is an object which defaults to { ignore_whitespace: false }.
isEthereumAddress(str) check if the string is an Ethereum address. Does not validate address checksums.
isFloat(str [, options]) check if the string is a float.

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.

min and max are equivalent to 'greater or equal' and 'less or equal', respectively while gt and lt are their strict counterparts.

locale determines 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', 'eo', '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).

options is an object which defaults to { require_tld: true, allow_underscores: false, allow_trailing_dot: false, allow_numeric_tld: false, allow_wildcard: false, ignore_max_length: false }. If allow_wildcard is set to true, the validator will allow domain starting with *. (e.g. *.example.com or *.shop.example.com).
isFreightContainerID(str) alias for isISO6346, check if the string is a valid ISO 6346 shipping container identification.
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.

Algorithm is one of ['crc32', 'crc32b', 'md4', 'md5', 'ripemd128', 'ripemd160', 'sha1', 'sha256', 'sha384', 'sha512', 'tiger128', 'tiger160', 'tiger192'].
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.

Comma-separated format supported. Space-separated format supported with the exception of a few edge cases (ex: hsl(200grad+.1%62%/1)).
isIBAN(str, [, options]) check if the string is an IBAN (International Bank Account Number).

options is an object which accepts two attributes: whitelist: where you can restrict IBAN codes you want to receive data from and blacklist: where you can remove some of the countries from the current list. For both you can use an array with the following values ['AD','AE','AL','AT','AZ','BA','BE','BG','BH','BR','BY','CH','CR','CY','CZ','DE','DK','DO','EE','EG','ES','FI','FO','FR','GB','GE','GI','GL','GR','GT','HR','HU','IE','IL','IQ','IR','IS','IT','JO','KW','KZ','LB','LC','LI','LT','LU','LV','MC','MD','ME','MK','MR','MT','MU','MZ','NL','NO','PK','PL','PS','PT','QA','RO','RS','SA','SC','SE','SI','SK','SM','SV','TL','TN','TR','UA','VA','VG','XK'].
isIdentityCard(str [, locale]) check if the string is a valid identity card code.

locale is one of ['LK', 'PL', 'ES', 'FI', 'IN', 'IT', 'IR', 'MZ', 'NO', 'TH', 'zh-TW', 'he-IL', 'ar-LY', 'ar-TN', 'zh-CN', 'zh-HK', 'PK'] OR 'any'. If 'any' is used, function will check if any of the locales match.

Defaults to 'any'.
isIMEI(str [, options])) check if the string is a valid IMEI number. IMEI should be of format ############### or ##-######-######-#.

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 an array of allowed values.
isInt(str [, options]) check if the string is an integer.

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 [, options]) check if the string is an ISBN.

options is an object that has no default.
Options:
version: ISBN version to compare to. Accepted values are '10' and '13'. If none provided, both will be tested.
isISIN(str) check if the string is an ISIN (stock/security identifier).
isISO6346(str) check if the string is a valid ISO 6346 shipping container identification.
isISO6391(str) check if the string is a valid ISO 639-1 language code.
isISO8601(str [, options]) check if the string is a valid ISO 8601 date.
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.
isISO15924(str) check if the string is a valid ISO 15924 officially assigned script code.
isISO31661Alpha2(str) check if the string is a valid ISO 3166-1 alpha-2 officially assigned country code.
isISO31661Alpha3(str) check if the string is a valid ISO 3166-1 alpha-3 officially assigned country code.
isISO31661Numeric(str) check if the string is a valid ISO 3166-1 numeric officially assigned country code.
isISO4217(str) check if the string is a valid ISO 4217 officially assigned currency code.
isISRC(str) check if the string is an ISRC.
isISSN(str [, options]) check if the string is an ISSN.

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).

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.

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 and equal to any of the integers of the discreteLengths array if provided.

options is an object which defaults to { min: 0, max: undefined, discreteLengths: undefined }. Note: this function takes into account surrogate pairs.
isLicensePlate(str, locale) check if the string matches the format of a country's license plate.

locale is one of ['cs-CZ', 'de-DE', 'de-LI', 'en-IN', 'en-SG', 'en-PK', 'es-AR', 'hu-HU', 'pt-BR', 'pt-PT', 'sq-AL', 'sv-SE'] or 'any'.
isLocale(str) check if the string is a locale.
isLowercase(str) check if the string is lowercase.
isLuhnNumber(str) check if the string passes the Luhn algorithm check.
isMACAddress(str [, options]) check if the string is a MAC address.

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'. The options also allow a eui property to specify if it needs to be validated against EUI-48 or EUI-64. The accepted values of eui are: 48, 64.
isMagnetURI(str) check if the string is a Magnet URI format.
isMailtoURI(str, [, options]) check if the string is a Mailto URI format.

options is an object of validating emails inside the URI (check isEmails options for details).
isMD5(str) check if the string is a MD5 hash.

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 format.
isMobilePhone(str [, locale [, options]]) check if the string is a mobile phone number,

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-EH', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-PS', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'az-AZ', 'az-LB', 'az-LY', 'be-BY', 'bg-BG', 'bn-BD', 'bs-BA', 'ca-AD', 'cs-CZ', 'da-DK', 'de-AT', 'de-CH', 'de-DE', 'de-LU', 'dv-MV', 'dz-BT', 'el-CY', 'el-GR', 'en-AG', 'en-AI', 'en-AU', 'en-BM', 'en-BS', 'en-BW', 'en-CA', 'en-GB', 'en-GG', 'en-GH', 'en-GY', 'en-HK', 'en-IE', 'en-IN', 'en-JM', 'en-KE', 'en-KI', 'en-KN', 'en-LS', 'en-MO', 'en-MT', 'en-MU', 'en-MW', 'en-NG', 'en-NZ', 'en-PG', 'en-PH', 'en-PK', 'en-RW', 'en-SG', 'en-SL', 'en-SS', 'en-TZ', 'en-UG', 'en-US', 'en-ZA', 'en-ZM', 'en-ZW', 'es-AR', 'es-BO', 'es-CL', 'es-CO', 'es-CR', 'es-CU', 'es-DO', 'es-EC', 'es-ES', 'es-GT','es-HN', 'es-MX', 'es-NI', 'es-PA', 'es-PE', 'es-PY', 'es-SV', 'es-UY', 'es-VE', 'et-EE', 'fa-AF', 'fa-IR', 'fi-FI', 'fj-FJ', 'fo-FO', 'fr-BE', 'fr-BF', 'fr-BJ', 'fr-CD', 'fr-CF', 'fr-FR', 'fr-GF', 'fr-GP', 'fr-MQ', 'fr-PF', 'fr-RE', 'fr-WF', 'ga-IE', 'he-IL', 'hu-HU', 'id-ID', 'ir-IR', 'it-IT', 'it-SM', 'ja-JP', 'ka-GE', 'kk-KZ', 'kl-GL', 'ko-KR', 'ky-KG', 'lt-LT', 'mg-MG', 'mn-MN', 'mk-MK', 'ms-MY', 'my-MM', 'mz-MZ', 'nb-NO', 'ne-NP', 'nl-AW', 'nl-BE', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-AO', 'pt-BR', 'pt-PT', 'ro-Md', 'ro-RO', 'ru-RU', 'si-LK', 'sk-SK', 'sl-SI', 'so-SO', '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'] OR defaults to 'any'. If 'any' or a falsey value is used, function will check if any of the locales match).

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.
isMultibyte(str) check if the string contains one or more multibyte chars.
isNumeric(str [, options]) check if the string contains only numbers.

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 .).

locale determines 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', 'eo', '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.

countryCode is one of ['AM', 'AR', 'AT', 'AU', 'AZ', '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', 'JM', 'JP', 'KR', 'KZ', 'LI', 'LT', 'LU', 'LV', 'LY', 'MT', 'MX', 'MY', 'MZ', 'NL', 'NZ', 'PH', 'PK', 'PL', 'PT', 'RO', 'RU', 'SE', 'SL', 'SK', 'TH', 'TR', 'UA', 'US', 'ZA']. Locale list is validator.passportNumberLocales.
isPort(str) check if the string is a valid port number.
isPostalCode(str, locale) check if the string is a postal code.

locale is one of ['AD', 'AT', 'AU', 'AZ', 'BA', 'BE', 'BG', 'BR', 'BY', 'CA', 'CH', 'CN', 'CO', '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', 'MG', 'MT', 'MX', 'MY', 'NL', 'NO', 'NP', 'NZ', 'PL', 'PR', 'PT', 'RO', 'RU', 'SA', 'SE', 'SG', 'SI', 'SK', 'TH', 'TN', 'TW', 'UA', 'US', 'ZA', 'ZM'] OR 'any'. If 'any' is used, function will check if any of the locales match. Locale list is validator.isPostalCodeLocales.
isRFC3339(str) check if the string is a valid RFC 3339 date.
isRgbColor(str [,options]) check if the string is a rgb or rgba color.

options is an object with the following properties

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.

allowSpaces defaults to true, which prohibits whitespace. If set to false, whitespace between color values is allowed, such as rgb(255, 255, 255) or even rgba(255, 128, 0, 0.7).
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(str) check if the string is of type slug.
isStrongPassword(str [, options]) check if the string can be considered a strong password 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.
Default options:
{ 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 }
isTime(str [, options]) check if the string is a valid time e.g. [23:01:59, new Date().toLocaleTimeString()].

options is an object which can contain the keys hourFormat or mode.

hourFormat is a key and defaults to 'hour24'.

mode is a key and defaults to 'default'.

hourFormat can contain the values 'hour12' or 'hour24', 'hour24' will validate hours in 24 format and 'hour12' will validate hours in 12 format.

mode can contain the values 'default' or 'withSeconds', 'default' will validate HH:MM format, 'withSeconds' will validate the HH:MM:SS format.
isTaxID(str, locale) check if the string is a valid Tax Identification Number. Default locale is en-US.

More info about exact TIN support can be found in src/lib/isTaxID.js.

Supported locales: [ 'bg-BG', 'cs-CZ', 'de-AT', 'de-DE', 'dk-DK', 'el-CY', 'el-GR', 'en-CA', 'en-GB', 'en-IE', 'en-US', 'es-AR', 'es-ES', 'et-EE', 'fi-FI', 'fr-BE', 'fr-CA', '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', 'uk-UA'].
isURL(str [, options]) check if the string is a URL.

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 }.

require_protocol - if set to 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 to false isURL will not check if host is present in the URL.
require_port - if set to true isURL will check if port is present in the URL.
allow_protocol_relative_urls - if set to true protocol relative URLs will be allowed.
allow_fragments - if set to false isURL will return false if fragments are present.
allow_query_components - if set to false isURL will return false if query components are present.
validate_length - if set to false isURL will skip string length validation. max_allowed_length will be ignored if this is set as false.
max_allowed_length - if set isURL will not allow URLs longer than the specified value (default is 2084 that IE maximum URL length).
isULID(str) check if the string is a ULID.
isUUID(str [, version]) check if the string is an RFC9562 UUID.
version is one of '1'-'8', 'nil', 'max', or 'all'.
isVariableWidth(str) check if the string contains a mixture of full and half-width chars.
isVAT(str, countryCode) check if the string is a valid VAT number if validation is available for the given country code matching ISO 3166-1 alpha-2.

countryCode is one of ['AL', 'AR', 'AT', 'AU', 'BE', 'BG', 'BO', 'BR', 'BY', 'CA', 'CH', 'CL', 'CO', 'CR', 'CY', 'CZ', 'DE', 'DK', 'DO', 'EC', 'EE', 'EL', 'ES', 'FI', 'FR', 'GB', 'GT', 'HN', 'HR', 'HU', 'ID', 'IE', 'IL', 'IN', 'IS', 'IT', 'KZ', 'LT', 'LU', 'LV', 'MK', 'MT', 'MX', 'NG', 'NI', 'NL', 'NO', 'NZ', 'PA', 'PE', 'PH', 'PL', 'PT', 'PY', 'RO', 'RS', 'RU', 'SA', 'SE', 'SI', 'SK', 'SM', 'SV', 'TR', 'UA', 'UY', 'UZ', 'VE'].
isWhitelisted(str, chars) check if the string consists only of characters that appear in the whitelist chars.
matches(str, pattern [, modifiers]) check if the string matches the pattern.

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]) canonicalize an email address. (This doesn't validate that the input is an email, if you want to validate the email use isEmail beforehand).

options is an object with the following keys and default values:
  • 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 is case insensitive per RFC 1035.
  • 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.
  • 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).
  • 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").
  • gmail_convert_googlemaildotcom: true: Converts addresses with domain @googlemail.com to @gmail.com, as they're equivalent.
  • 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.
  • 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").
  • 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.
  • 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").
  • 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.
  • 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").
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) replace 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.

For an alternative, have a look at Yahoo's xss-filters library or at DOMPurify.

Maintainers

Reading

Remember, validating can be troublesome sometimes. See A list of articles about programming assumptions commonly made that aren't true.

Contributing

We welcome contributions from the community! If you're interested in contributing to this project, please read our Contribution Guide to get started.

License

This project is licensed under the MIT. See the LICENSE file for details.

更新日志

13.13.0

New Features / Validators

  • #2399 isISO31661Numeric @RobinvanderVliet
  • #2294 isULID @arafatkn
  • #2215 isISO15924 @xDivisionByZerox

Fixes, New Locales and Enhancements

  • isMobilePhone
    • #2395 add es-GT locale @ignaciosuarezquilis
    • #1971 improve en-GB locale @ihmpavel
    • #2359 improve uk-UA locale @arttiger
    • #2350 improve ky-KG locale @sadraliev
    • #2482 improve en-ZM locale @sonikishan
    • #2362 improve en-GH locale @NanaAb-116
    • #2500 add mk-MK locale @eshward95
    • #2534 improve sq-AL locale @nichoola
  • #2406 isBtcAddress support all address formats and testnets @madoke
  • #2339 isIBAN improve VG regex @ST-DDT
  • #2332 isISO4217 update currency codes @cbodtorf
  • #2291 isIdentityCard add PK locale @Daniyal-Qureshi
  • #2414 isEmail fix blacklist_chars @keshavlingala
  • #2416 isInt/isFloat handle undefined and null values @Daniyal-Qureshi
  • #2415 isPostalCode add CO locale @jorgevrgs
  • #2404 isPassportNumber export passportNumberLocales @derekparnell
  • #2029 isRgbColor add allowSpaces option @a-h-i
  • #2421 isUUID require valid variant field and require RFC9562 UUID in version all @broofa
  • #2439 isURL add max_allowed_length option @pinkiesky
  • #2437 isEmail reject starting with double quotes @code0emperor
  • #2333 isLicensePlate add en-SG locale @Sabarinathan07
  • #2441 normalizeEmail add yandex_convert_yandexru option @AayushGH
  • #2443 isDate return false instead of Error in certain cases @pano9000
  • #2474 isLength add discreteLengths option @Suven-p
  • #2481 isDate disallow mismatching length in strictMode @sonikishan
  • #2492 isISO6346 set check digit to 0 if remainder is 10 @joelcuy
  • #2493 isPostalCode improve BR locale @ticmaisdev
  • #2494 isEmail allow regexp in host_whitelist and host_blacklist @weikangchia
  • #2518 isIBAN improve IE/PS regex @Tarasz57
  • Doc fixes and others:

13.12.0

New Features / Validators

  • #2143 isAbaRouting @songyuew

Fixes, New Locales and Enhancements

  • #2207 isLicensePlate add Pakistani en-PK locale @anasshakil
  • #2208 isPort fix invalid leading zeros @anasshakil
  • #2224 isTaxID added Argentina es-AR locale @estefrare
  • #2257 isDate timezone offset fix @tomaspanek
  • #2265 isPassportNumber added ZA locale @GMorris-professional
  • isMobilePhone:
    • #2267 added en-MW locale @SimranSiddiqui
    • #2140 fix am-AM locale @AlexKrupko
  • #2271 isPostalAddress fix NL locale @RobinvanderVliet
  • #2273 isISO4217 add SLE currency @urg
  • #2278 isStrongPassword fix symbolRegex to include \ @nandavikas
  • #2279 isVAT fixed KZ locale @MatthieuLemoine
  • #2285 isAlpha, isAlphanumeric added eo locale @RobinvanderVliet
  • #2320 isIBAN add Algeria DZ locale @thibault-lr
  • #2343 isVATimprove AU locale @matthewberryman
  • #2345 isUUID add support for v7 @ruscon
  • #2358 isTaxID add Ukraine uk-UA locale @arttiger
  • #2381 isDate disallow hiphen before year @Sumit-tech-joshi
  • Doc fixes and others:

13.11.0

New Features / Validators

  • #2144 isFreightContainerID: for shipping containers IDs @songyuew
  • #2188 isMailtoURI @uksarkar

Fixes, New Locales and Enhancements

  • #2025 isIBAN add MA locale @lroudge
  • #2117 isCreditCard refactor @pano9000
  • #2189 isLocale add support for more language tags @kwahome
  • #2203 isVAT for CU @jimmyorpheus
  • #2217 isJWT @Prathamesh061
  • #2222 IsFQDN test enhancements @aalekhpatel07
  • #2226 isAlpha, isAlphanumeric for kk-KZ @BekStar7
  • #2229 isEmail support allow_underscores @guspower
  • #2231 isDate enhance Date declaration compatibility across multiple environments @CiprianS
  • #2235 isIBAN add white and blacklist options to the isIBAN validator @edilson
  • #2237 isEmail do not allow non-breaking space in user part @jeremy21212121
  • isMobilePhone:

13.9.0

New Features / Validators

  • #1892 isISO6391: add ISO 639-1 validator @braaar
  • #1974 isLuhnNumber @ST-DDT

Fixes and Enhancements

  • #1865 isMACAddress: add EUI-validation @WikiRik @tux-tn
  • #1888 isBase32: add option for Crockford's base32 alternative @BigOsvaap
  • #1916 isDataURI: fix mediaType format @temoffey
  • #1920 isEmail: add host_whitelist option @poor-coder
  • #1939 isFQDN: fix allow_numeric_tld option @BigOsvaap
  • #1962 isIP: refactor @UnKnoWn-Consortium
  • #1967 isLength @ikkyu-3
  • #1992 isMagnetURI @Rhilip @tux-tn
  • #1995 isURL: fix check for host @mortbauer
  • #2008 isCreditCard @brianwhaley
  • #2075 isAfter: allow usage of option object @WikiRik
  • #2114 isRgbColor @pano9000
  • #2122 isDataURI: fix MIME types with underscores @pano9000
  • #2148 isStrongPassword @sandmule
  • #2157 isISBN: allow usage of option object @WikiRik
  • #2170 isEmail: fix ignore_max_length for FQDN @sakhmedbayev
  • #2020 isFloat: fix comma(,) passing as float @frederike-ramin

  • Documentation fixes:

  • Code Refactors:

New and Improved Locales

  • isAlpha, isAlphanumeric:

  • isBIC:

  • isIdentityCard:

    • #2142 hk-HK @Dongkyuuuu
  • isMobilePhone:

    • #1813 my-MM, @ferdousulhaque
    • #1868 de-DE, @thomaschaaf
    • #1896 en-LS, @DevilsAutumn
    • #1897 el-CY, @ikerasiotis
    • #1909 es-NI, @ajGingrich
    • #1910 az-AZ, @shaanaliyev
    • #1922 ir-IR, @ArashST79
    • #1924 ky-KG, @arsalanfiroozi
    • #1925 ar-YE, ar-EH, fa-AF, @Mustafiz04
    • #1932 ro-MD, @mik7up
    • #1940 ar-YE, en-BS, @savannahvaith
    • #1952 ka-GE, @avkvak
    • #1964 #1951 pt-BR, @jhcaiafa @matheusnascgomes
    • #1983 es-HN, @ademyan05
    • #1985 nl-AW, @adida948
    • #1986 en-JM, @ademyan05
    • #1993 mn-MN, @rksp25
    • #1997 fr-BJ, @rkuma552 @rksp25
    • #2001 mg-MG, @ShivangiRai1310
    • #2002 en-PG, @kai2128
    • #2004 en-AG, @jiaweilow
    • #2007 en-AI, @elaine1129
    • #2011 en-KN, @Eelyneee
    • #2041 fr-CD, @coolbeatz71
    • #2084 en-SS, @cheboi
    • #2109 dv-MV, @pano9000
    • #2129 en-HN, @WikiRik
    • #2148 ar-KW, @Yazan-KE @WikiRik
    • #2112 el-GR, @pano9000
    • #2116 en-BM, @pano9000
    • #2155 ms-MY, @pano9000
    • #2156 ro-RO, @pano9000
  • isLicensePlate:

    • #1665 sv-SE, @elmaxe
    • #1895 hu-HU, @szabolcstarnai
    • #1944 en-NI, @NishantJS
    • #1945 de-DE, @bennetfabian
    • #1945 de-DE, @bennetfabian
    • #2103 es-AR, @alvarocastro
  • isPassportNumber:

  • isPostalCode:

  • isTaxID:
    • #1867 en-CA, @boonya
    • #1989 'AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'EL', 'HU', 'IE', 'LV', 'LT', 'LU', 'MT', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'AL', 'MK', 'AU', 'BY', 'CA', 'IS', 'IN', 'ID', 'IL', 'KZ', 'NZ', 'NG', 'NO', 'PH', 'RU', 'SM', 'SA', 'RS', 'CH', 'TR', 'UA', 'UZ', 'AR', 'BO', 'BR', 'CL', 'CO', 'CR', 'EC', 'SV', 'GT', 'HN', 'MX', 'NI', 'PA', 'PY', 'PE', 'DO', 'UY', 'VE' @Dev1lDragon

13.7.0

New Features

  • #1706 isISO4217, currency code validator @jpaya17

Fixes and Enhancements

  • #1647 isFQDN: add allow_wildcard option @fasenderos
  • #1654 isRFC3339: Disallow prepended and appended strings to RFC 3339 date-time @jmacmahon
  • #1658 maintenance: increase code coverage @tux-tn
  • #1669 IBAN export list of country codes that implement IBAN @dror-heller @fedeci
  • #1676 isBoolean: add loose option @brybrophy
  • #1697 maintenance: fix npm installation error @rubiin
  • #1708 isISO31661Alpha3: perf @jpaya17
  • #1711 isDate: allow users to strictly validate dates with . as delimiter @flymans
  • #1715 isCreditCard: fix for Union Pay cards @shreyassai123
  • #1718 isEmail: replace all dots in GMail length validation @DasDingGehtNicht
  • #1721 isURL: add allow_fragments and allow_query_components @cowboy-bebug
  • #1724 isISO31661Alpha2: perf @jpaya17
  • #1730 isMagnetURI @tux-tn
  • #1738 rtrim: remove regex to prevent ReDOS attack @tux-tn
  • #1747 maintenance: run scripts in parallel for build and clean @sachinraja
  • #1748 isURL: higher priority to whitelist @deepanshu2506
  • #1751 isURL: allow url with colon and no port @MatteoPierro
  • #1777 isUUID: fix for null version argument @theteladras
  • #1799 isFQDN: check more special chars @MatteoPierro
  • #1833 isURL: allow URL with an empty user @MiguelSavignano
  • #1835 unescape: fixed bug where intermediate string contains escaped @Marcholio
  • #1836 contains: can check that string contains seed multiple times @Marcholio
  • #1844 docs: add CDN instructions @luiscobits
  • #1848 isUUID: add support for validation of v1 and v2 @theteladras
  • #1941 isEmail: add host_blacklist option @fedeci

New and Improved Locales

  • isAlpha, isAlphanumeric:

  • isPassportNumber:

  • isPostalCode:

  • isIdentityCard:

    • #1657 TH @tithanayut
    • #1745 PL @wiktorwojcik112 @fedeci @tux-tn
    • #1786 LK @nimanthadilz @tux-tn
    • #1838 FI @Marcholio
  • isMobilePhone:

  • isLicensePlate:

    • #1565 cs-CZ @filiptronicek
    • #1790 fi-FI @Marcholio
  • isVAT:

13.6.1

  • New features:

    • #1495 isLicensePlate @firlus
  • Fixes and Enhancements:

    • #1651 fix ReDOS vulnerabilities in isHSL and isEmail @tux-tn
    • #1644 isURL: Allow URLs to have only a username in the userinfo subcomponent @jbuchmann-coosto
    • #1633 isISIN: optimization @bmacnaughton
    • #1632 isIP: improved pattern for IPv4 and IPv6 @ognjenjevremovic
    • #1625 fix [A-z] regex range on some validators @bmacnaughton
    • #1620 fix docs @prahaladbelavadi
    • #1616 isMacAddress: improve regexes and options @fedeci
    • #1603 fix ReDOS vulnerabilities in isSlug and rtrim @fedeci
    • #1594 isIPRange: add support for IPv6 @neilime
    • #1577 isEAN: add support for EAN-14 @varsubham @tux-tn
    • #1566 isStrongPassword: add @ as a valid symbol @stingalleman
    • #1548 isBtcAddress: add base58 @ezkemboi
    • #1546 isFQDN: numeric domain names @tux-tn
  • New and Improved locales:

    • isIdentityCard, isPassportNumber:
      • #1595 IR @mhf-ir @fedeci
      • #1583 ar-LY @asghaier76 @tux-tn
      • #1574 MY @stranger26 @tux-tn
    • isMobilePhone:
    • isPostalCode:
    • isTaxID:
    • isVAT:

13.5.0 13.5.1

  • New features:

    • isVAT #1463 @ CodingNagger
    • isTaxID #1446 @tplessas
    • isBase58 #1445 @ezkemboi
    • isStrongPassword #1348 @door-bell
  • Fixes and Enhancements:

    • #1486 isISO8601: add strictSeparator @brostone51
    • #1474 isFQDN: make more strict @CristhianMotoche
    • #1469 isFQDN: allow_underscore option @gibson042
    • #1449 isEmail: character blacklisting @rubiin
    • #1436 isURL: added require_port option @yshanli
    • #1435 isEmail: respect ignore_max_length option @evantahler
    • #1402 isDate: add strictMode and prevent mixed delimiters @tux-tn
    • #1286 isAlpha: support ignore option @mum-never-proud
  • New and Improved locales:

    • isAlpha, isAlphanumeric:
    • isMobilePhone:
      • #1521 ar-MA @artpumpkin
      • #1492 de-LU,it-SM, sq-AL and ga-IE @firlus
      • #1487 en-HN @jehielmartinez
      • #1473 ar-LB, es-PE, ka-GE @rubiin
      • #1470 es-DO @devrasec
      • #1460 es-BO @rubiin
      • #1444 es-AR @csrgt
      • #1407 pt-BR @viniciushvsilva
    • isPostalCode:
    • isPassportNumber:

— this release is dedicated to @dbnandaa 🧒

13.1.17

  • New features:
    • None
  • Fixes and chores:

    • #1425 fix validation for userinfo part for isURL @heanzyzabala
    • #1419 fix isBase32 and isBase64 to validate empty strings properly @AberDerBart
    • #1408 tests for isTaxId @dspinellis
    • #1397 added validate_length option for isURL @tomgrossman
    • #1383 #1428 doc typos @0xflotus @timgates42
    • #1376 add missing tests and switch to Coverall @tux-tn
    • #1373 improve code coverage @ezkemboi
    • #1357 add Node v6 on build pipeline @profnandaa
  • New and Improved locales:

    • isMobilePhone:
      • #1439 az-AZ @saidfagan
      • #1420 uz-Uz @icyice0217
      • #1391 de-DE @heanzyzabala
      • #1388 en-PH @stinkymonkeyph
      • #1370 es-ES @rubiin
      • #1356 bs-BA @MladenZeljic
      • #1303 zh-CN @heathcliff-hu
    • isPostalCode:
    • isAlpha, isAlphanumeric:
      • #1411 fa-AF, fa-IR @stinkymonkeyph
      • #1371 vi-VN @rubiin
    • isBAN:
      • #1394 EG, SV @heanzyzabala
    • isIdentityCard:

13.1.1

  • Hotfix for a regex incompatibility in some browsers (#1355

13.1.0

13.0.0

12.2.0

12.1.0

  • ES module for webpack tree shaking (#1015)
  • Updated isIP() to accept scoped IPv6 addresses (#1160)
  • New and improved locales (#1162, #1183, #1187, #1191)

12.0.0

11.1.0

11.0.0

  • Added a isBase32() validator (#1023)
  • Updated isEmail() to validate display names according to RFC2822 (#1004)
  • Updated isEmail() to check total email length (#1007)
  • The internal toString() util is no longer exported (0277eb)
  • New and improved locales (#999, #1010, #1017, #1022, #1031, #1032)

10.11.0

  • Fix imports like import .. from "validator/lib/.." (#961)
  • New locale (#958)

10.10.0

  • isISO8601() strict mode now works in the browser (#932)
  • New and improved locales (#931, #933, #947, #950)

10.9.0

  • Added an option to isURL() to reject email-like URLs (#901)
  • Added a strict option to isISO8601() (#910)
  • Relaxed isJWT() signature requirements (#906)
  • New and improved locales (#899, #904, #913, #916, #925, #928)

10.8.0

  • Added isIdentityCard() (#846)
  • Better error when validators are passed an invalid type (#895)
  • Locales are now exported (#890, #892)
  • New locale (#896)

10.7.1

  • Ignore case when checking URL protocol (#887)
  • Locale fix (#889)

10.7.0

10.6.0

  • Updated isMobilePhone() to match any locale's pattern by default (#874)
  • Added an option to ignore whitespace in isEmpty() (#880)
  • New and improved locales (#878, #879)

10.5.0

  • Disabled domain-specific email validation (#873)
  • Added support for IP hostnames in isEmail() (#845)
  • Added a no_symbols option to isNumeric() (#848)
  • Added a no_colons option to isMACAddress() (#849)
  • Updated isURL() to reject protocol relative URLs unless a flag is set (#860)
  • New and improved locales (#801, #856, #859, #861, #862, #863, #864, #870, #872)

10.4.0

  • Added an isIPRange() validator (#842)
  • Accept an array of locales in isMobilePhone() (#742)
  • New locale (#843)

10.3.0

10.2.0

  • Export the list of supported locales in isPostalCode() (#830)

10.1.0

  • Added an isISO31661Alpha3() validator (#809)

10.0.0

  • Allow floating points in isNumeric() (#810)
  • Disallow GMail addresses with multiple consecutive dots, or leading/trailing dots (#820)
  • Added an isRFC3339() validator (#816)
  • Reject domain parts longer than 63 octets in isFQDN(), isURL() and isEmail() (bb3e542)
  • Added a new Amex prefix to isCreditCard() (#805)
  • Fixed isFloat() min/max/gt/lt filters when a locale with a comma decimal is used (2b70821)
  • Normalize Yandex emails (#807)
  • New locales (#803)

9.4.1

  • Patched a REDOS vulnerability in isDataURI
  • New and improved locales (#788)

9.4.0

  • Added an option to isMobilePhone to require a country code (#769)
  • New and improved locales (#785)

9.3.0

9.2.0

  • Added an isMimeType() validator (#760)
  • New and improved locales (#753, #755, #764)

9.1.2

  • Fixed a bug with the isFloat validator (#752)

9.1.1

9.1.0

  • Added an isISO31661Alpha2() validator (#734)
  • New locales (#735, #737)

9.0.0

  • normalizeEmail() no longer validates the email address (#725)
  • Added locale-aware validation to isFloat() and isDecimal() (#721)
  • Added an isPort() validator (#733)
  • New locales (#731)

8.2.0

8.1.0

  • Fix require('validator/lib/isIS8601') calls (#688)
  • Added an isLatLong() and isPostalCode() validator (#684)
  • Allow comma in email display names (#692)
  • Add missing string to unescape() (#690)
  • Fix isMobilePhone() with Node <= 6.x (#681)
  • New locales (#695)

8.0.0

  • isURL() now requires the require_tld: false option to validate localhost (#675)
  • isURL() now rejects URLs that are protocol only (#642)
  • Fixed a bug where isMobilePhone() would silently return false if the locale was invalid or unsupported (#657)

7.2.0

  • Added an option to validate any phone locale (#663)
  • Fixed a bug in credit card validation (#672)
  • Disallow whitespace, including unicode whitespace, in TLDs (#677)
  • New locales (#673, #676)

7.1.0

7.0.0

  • Remove isDate()

6.3.0

6.2.1

  • Disallow < and > in URLs (#613)
  • New locales (#610)

6.2.0

  • Added an option to require an email display name (#607)
  • Added support for lt and gt to isInt() (#588)
  • New locales (#601)

6.1.0

  • Added support for greater or less than in isFloat() (#544)
  • Added support for ISSN validation via isISSN() (#593)
  • Fixed a bug in normalizeEmail() (#594)
  • New locales (#585)

6.0.0

  • Renamed isNull() to isEmpty() (#574)
  • Backslash is now escaped in escape() (#516)
  • Improved normalizeEmail() (#583)
  • Allow leading zeroes by default in isInt() (#532)

5.7.0

  • Added support for IPv6 in isURL() (#564)
  • Added support for urls without a host (e.g. file:///foo.txt) in isURL() (#563)
  • Added support for regular expressions in the isURL() host whitelist and blacklist (#562)
  • Added support for MasterCard 2-Series BIN (#576)
  • New locales (#575, #552)

5.6.0

5.5.0

  • Fixed a regex denial of service in trim() and rtrim() (#556)
  • Added an Algerian locale to isMobilePhone() (#540)
  • Fixed the Hungarian locale in isAlpha() and isAlphanumeric() (#541)
  • Added a Polish locale to isMobilePhone() (#545)

5.4.0

  • Accept Union Pay credit cards in isCreditCard() (#539)
  • Added Danish locale to isMobilePhone() (#538)
  • Added Hungarian locales to isAlpha(), isAlphanumeric() and isMobilePhone() (#537)

5.3.0

  • Added an allow_leading_zeroes option to isInt() (#532)
  • Adjust Chinese mobile phone validation (#523)
  • Added a Canadian locale to isMobilePhone() (#524)

5.2.0

  • Added a isDataURI() validator (#521)
  • Added Czech locales (#522)
  • Fixed a bug with isURL() when protocol was missing and "://" appeared in the query (#518)

5.1.0

  • Added a unescape() HTML function (#509)
  • Added a Malaysian locale to isMobilePhone() (#507)
  • Added Polish locales to isAlpha() and isAlphanumeric() (#506)
  • Added Turkish locales to isAlpha(), isAlphanumeric() and isMobilePhone() (#512)
  • Allow >1 underscore in hostnames when using allow_underscores (#510)

5.0.0

  • Migrate to ES6 (#496)
  • Break the library up so that individual functions can be imported (#496)
  • Remove auto-coercion of input to a string (#496)
  • Remove the extend() function (#496)
  • Added Arabic locales to isAlpha() and isAlphanumeric() (#496)
  • Fix validation of very large base64 strings (#503)

4.9.0

  • Added a Russian locale to isAlpha() and isAlphanumeric() (#499)
  • Remove the restriction on adjacent hyphens in hostnames (#500)

4.8.0

  • Added Spanish, French, Portuguese and Dutch support for isAlpha() and isAlphanumeric() (#492)
  • Added a Brazilian locale to isMobilePhone() (#489)
  • Reject IPv4 addresses with invalid zero padding (#490)
  • Fix the client-side version when used with RequireJS (#494)

4.7.1

4.7.0

  • Print a deprecation warning if validator input is not a string (1f67e1e). Note that this will be an error in v5.
  • Added a German locale to isMobilePhone(), isAlpha() and isAlphanumeric() (#477)
  • Added a Finnish locale to isMobilePhone() (#455)

4.6.1

  • Fix coercion of objects: Object.toString() is [object Object] not "" (a57f3c8)

4.6.0

  • Added a Spanish locale to isMobilePhone() (#481)
  • Fix string coercion of objects created with Object.create(null) (#484)

4.5.2

  • Fix a timezone issue with short-form ISO 8601 dates, e.g. validator.isDate('2011-12-21') (#480)

4.5.1

  • Make isLength() / isByteLength() accept {min, max} as options object. (#474)

4.5.0

  • Add validation for Indian mobile phone numbers (#471)
  • Tweak Greek and Chinese mobile phone validation (#467, #468)
  • Fixed a bug in isDate() when validating ISO 8601 dates without a timezone (#472)

4.4.1

  • Allow triple hyphens in IDNA hostnames (#466)

4.4.0

  • Added isMACAddress() validator (#458)
  • Added isWhitelisted() validator (#462)
  • Added a New Zealand locale to isMobilePhone() (#452)
  • Added options to control GMail address normalization (#460)

4.3.0

  • Support Ember CLI module definitions (#448)
  • Added a Vietnam locale to isMobilePhone() (#451)

4.2.1

  • Fix isDate() handling of RFC2822 timezones (#447)

4.2.0

  • Fix isDate() handling of ISO8601 timezones (#444)
  • Fix the incorrect isFloat('.') === true (#443)
  • Added a Norwegian locale to isMobilePhone() (#439)

4.1.0

  • General isDate() improvements (#431)
  • Tests now require node 4.0+ (#438)

4.0.6

  • Added a Taiwan locale to isMobilePhone() (#432)
  • Fixed a bug in isBefore() where it would return null (#436)

4.0.5

  • Fixed a denial of service vulnerability in the isEmail() regex (#152)

4.0.4

  • Reverted the leap year validation in isDate() as it introduced some regressions (#422, #423)

4.0.3

  • Added leap year validation to isDate() (#418)

4.0.2

  • Fixed isDecimal() with an empty string (#419)

4.0.1

  • Fixed isByteLength() with certain strings (09f0c6d)
  • Put length restrictions on email parts (#258)

4.0.0

  • Simplified the isEmail() regex and fixed some edge cases (#258)
  • Added ISO 8601 date validation via isISO8601() (#373)