A library of string validators and sanitizers.
Install the library with npm install validator
var validator = ; validator; //=> true
;
Or, import only a subset of the library:
;
The library can be loaded either as a standalone script, or through an AMD-compatible loader
The library can also be installed through bower
$ bower install validator-js
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 is an error.
['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', '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', 'hu-HU', 'nl-NL', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sr-RS', 'sr-RS@latin', 'tr-TR', 'uk-UA']
) and defaults to en-US
.['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', '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-BE', 'hu-HU', 'nl-BE', 'nl-NL', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sr-RS', 'sr-RS@latin', 'tr-TR', 'uk-UA']
) and defaults to en-US
.options
is an object which defaults to {min:0, max: undefined}
.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_space_after_digits: false }
.options
is an object which defaults to { allow_display_name: false, require_display_name: false, allow_utf8_local_part: true, require_tld: true }
. 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.options
is an object which defaults to { require_tld: true, allow_underscores: false, allow_trailing_dot: false }
.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 }
). min
and max
are equivalent to 'greater or equal' and 'less or equal', respectively while gt
and lt
are their strict counterparts.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.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).options
is an object which defaults to {min:0, max: undefined}
. Note: this function takes into account surrogate pairs.['ar-DZ', 'ar-SA', 'ar-SY', 'cs-CZ', 'de-DE', 'da-DK', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NG', 'en-NZ', 'en-US', 'en-CA', 'en-ZA', 'en-ZM', 'es-ES', 'en-PK', 'fi-FI', 'fr-FR', 'he-IL', 'hu-HU', 'it-IT', 'ja-JP', 'ms-MY', 'nb-NO', 'nn-NO', 'pl-PL', 'pt-PT', 'ro-RO', 'ru-RU', 'sr-RS', 'tr-TR', 'vi-VN', 'zh-CN', 'zh-HK', 'zh-TW']
).options
is an object which defaults to { protocols: ['http','https','ftp'], require_tld: true, require_protocol: false, require_host: true, require_valid_protocol: true, allow_underscores: false, host_whitelist: false, host_blacklist: false, allow_trailing_dot: false, allow_protocol_relative_urls: false }
.matches('foo', /foo/i)
or matches('foo', 'foo', 'i')
.blacklist(input, '\\[\\]')
.<
, >
, &
, '
, "
and /
with HTML entities.<
, >
, &
, '
, "
and /
.options
is an object with the following keys and default values:
keep_new_lines
is true
, newline characters are preserved (\n
and \r
, hex 0xA
and 0xD
). Unicode-safe in JavaScript.'0'
, 'false'
and ''
returns true
. In strict mode only '1'
and 'true'
return true
.null
if the input is not a date.NaN
if the input is not a float.NaN
if the input is not an integer.whitelist(input, '\\[\\]')
.XSS sanitization was removed from the library in 2d5d6999.
For an alternative, have a look at Yahoo's xss-filters library or at DOMPurify.
$ npm test
Remember, validating can be troublesome sometimes. See A list of articles about programming assumptions commonly made that aren't true.
Copyright (c) 2016 Chris O'Hara <cohara87@gmail.com> Permission is hereby granted, free of charge, to any person obtaininga copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, includingwithout limitation the rights to use, copy, modify, merge, publish,distribute, sublicense, and/or sell copies of the Software, and topermit persons to whom the Software is furnished to do so, subject tothe following conditions: The above copyright notice and this permission notice shall beincluded 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 OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE ANDNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BELIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTIONOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTIONWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.