1.2.2 • Published 2 years ago

util-validador v1.2.2

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
2 years ago

validaciones: Validaciones NodeJS

Librería de validaciones de diversos tipos en ECMAScript 6. ##Cómo usar

const Validador = require('path/to/util-validador');
//opciones predeterminadas
const validador = new Validador();
//con opciones
let options = {
    logLevel : "debug"
}
const custom = new Validator(options)

function checkJson(myVar) {
    let schema = {
        "type" : "object",
        "properties" : {
            "nombre" : {
                "type" : "string",
                "minLength" : 3,
                "maxLength" : 45
            },
            "apellido" : {
                "type" : "string",
                "pattern": "^(.*)$"
            }           
        }           
    };      
    let result = validador.validateJson(myVar, schema);
    if(result.valid){
        alert("OK!")
    }else{
        for(let m in result.mensaje.split(",")){
            console.error(m);
        }       
        alert("Oh no!")
    }
}

Opciones

log_level

Determina el nivel de logging, utilizando logLevel. Los niveles disponibles son:

  • debug
  • info
  • warn
  • error: Valor por defecto
  • silent

    validation_algorithm

    Determina si se usará jsonschema o ajv para validar json al usar validateJson():

  • 0: Se utilizará Ajv. Valor por defecto. Ttiene mensajes localizados al español.

  • 1: Se utilizará Json-schema.

    rut_regex

    Expresión regular para realizar la comprobación de formato de rut. Debe ser una expresión regular de javascript, no una string.

    Valor por defecto:

    /^(\d{1,3}(?:\.?\d{1,3}){2}-?[\dkK])$/

Funciones

validateJson

Retorna un objeto compuesto de dos valores, "valid" y "mensaje". "valid" es de tipo booleano "mensaje" es string.

Recibe como argumento un objeto json y un objeto schema, basado en la especificación jsonSchema.

Si la validación es positiva, la respuesta tendrá el formato:

{
  "valid" : true,
  "mensaje" : "OK"
}

Si la validación es negativa, tendrá el mismo formato, y los mensajes de error consistirán en una sola string separada por comas.

{
  "valid" : false,
  "mensaje" : "mensaje-1,mensaje-2,mensaje-3"
}

testRegex

Realiza una comparación contra una expresión regular de javascript. Retorna el valor booleano del método test. ####Uso

testRegex("12345", /^\d+$/) === true;

testRegex("12345", /^\d{3}+$/) === false;

isRut

Retorna true si el argumento es una string que contiene un rut.

Ignora los puntos separadores de miles, pero no el guión ni el dígito verificador.

No valida si el dígito verificador es correcto, solo el formato. ####Uso

 isrut("25.636.318-K") === true;
 isrut("19633144-2") === true;
 isrut("19633144") === false;

exists

Retorna true si el argumento no undefined y no es null. ####Uso

const Validador = require('path/to/util-validador');
const v = new Validador();

v.exists(null) === false;
v.exists(undefined) === false;
v.exists(NaN) === true;
v.exists(Infinity) === true;
v.exists("") === true;
v.exists(0) ===true;

isNumber

Retorna true si el valor es un número o una string que pueda ser evaluada como un número.

Valida como verdadero números enteros, reales, binarios, octales, hexadecimales y notación científica.

const Validador = require('path/to/util-validador');
const v = new Validador();
####Uso
v.isNumber(42) === true;
v.isNumber(-42) === true;
v.isNumber(42.5) === true;
v.isNumber(0b101010) === true;
v.isNumber(0o52) === true;
v.isNumber(0x2A) === true;
v.isNumber(4.2e1) === true;
v.isNumber(-4.2e-2) === true;
v.isNumber("42") === true;
v.isNumber("42.5") === true;
v.isNumber("0b101010") === true;

v.isNumber(null) === false;
v.isNumber(undefined) === false;
v.isNumber({number : 0}) === false;
v.isNumber([1,2]) === false;
v.isNumber("abc123") === false;
v.isNumber("123.4.5") === false;

isInteger

Realiza las mismas validaciones que isNumber() y adicionalmente solo retorna true si el valor es un número entero. ####Uso

v.isInteger(42) === true;
v.isInteger(42.5) === false;
v.isInteger(42e-3) === false;

isString

Retorna true si el valor es una string.

Arreglos de caracteres, aunque pueden ser considerados como "string", también devuelven falso. ####Uso

v.isString("hola mundo") === true;
v.isString(new String("El veloz murciélago hindú comía feliz cardillo y" +
"kiwi. La cigüeña tocaba el saxofón detrás del palenque de paja")) === true;

v.isString(['H','o','l','a']) === false;
v.isString(null) === false;
v.isString(undefined) === false;
v.isString("") === false;

isEmptyString

Retorna true si y solo si el argumento es una string y está vacía. ####Uso

v.isEmptyString("") === true;

v.isEmptyString(" ") === false;

isBlankString

Retorna true si el argumento es una string que está vacía o solo contiene caracteres de espacio en blanco. ####Uso

v.isBlankString(" ") === true;
v.isBlankString("") === true;
v.isBlankString("\n") === true;
v.isBlankString("\r") === true;
v.isBlankString("\t") === true;

v.isEmptyString(".") === false;
v.isBlankString(undefined) === false;

isEmptyObject

Retorna true si y solo si el argumento es un objeto vacío. ####Uso

v.isEmptyObject({}) === true;
v.isEmptyObject(new Object()) === true;

v.isEmptyObject("") === false;
v.isEmptyObject(0) === false;
v.isEmptyObject(null) === false;
v.isEmptyObject(undefined) === false;

isEmptyArray

Retorna true si y solo si el argumento es un objeto vacío ####Uso

v.isEmptyArray([]) === true;
v.isEmptyArray(new Array()) === true;

v.isEmptyArray([1,2,3]) === false;
v.isEmptyArray("") === false;
v.isEmptyArray(0) === false;
v.isEmptyArray(null) === false;
v.isEmptyArray(undefined) === false;

val

El objeto val expone la librería validation-utils en su totalidad. Aquí una copia de la sección de validadores de su readme

Validators

  • array(entity , errorText) - check if entity is an array.
  • boolean_(entity , errorText) - check if entity is a boolean.
  • booleanNonStrict(entity , errorText) - check if entity is a boolean or a (case-insensitive) 'true' or 'false' string.
  • booleanFalse(entity , errorText) - check if entity is a boolean with value False.
  • booleanTrue(entity , errorText) - check if entity is a boolean with value True.
  • date(entity , errorText) - check if entity is an instance of Date.
  • equal(entity, expectedEqualEntity , errorText) - check if entity is equal to the expected one (compared with ===).
  • falsy(entity , errorText) - check if entity is falsy.
  • function_(entity , errorText) - check if entity is a function.
  • inheritsFrom(entityClass, expectedParentClass , errorText) - check if class inherits from a given class.
  • instanceOf(entity, expectedClass , errorText) - check if entity is an instance of a given class.
  • notEmpty(entity , errorText) - check if entity is not an empty Object, String or Array.
  • notNil(entity , errorText) - check if entity is not null or undefined.
  • nil(entity , errorText) - check if entity is null or undefined.
  • number(entity , errorText) - check if entity is a number.
  • positiveNumber(entity , errorText) - check if entity is a positive number.
  • negativeNumber(entity , errorText) - check if entity is a negative number.
  • greaterThan(number, threshold , errorText) - check if entity is a number than is greater than the specified threshold.
  • lessThan(number, threshold , errorText) - check if entity is a number than is less than the specified threshold.
  • string(entity , errorText) - check if entity is a string.
  • object_(entity , errorText) - check if entity is an object.
  • truthy(entity , errorText) - check if entity is truthy.
  • withProperties(entity, expectedProperties) - check if entity has at least a given set of properties defined.

Important: All validators return validated value as a result and throw an error when validation fails. ####Uso

let validator_utils = v.val;
try{
validator_utils.isAlpha("123abc");
}catch(e){
console.error("No es alfanumérico");
}

stringVal

El objeto stringVal expone la librería validator en su totalidad.

Aquí una copia de la sección de validadores de su readme.

Validators

ValidatorDescription
contains(str, seed)check if the string contains the seed.
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)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', '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', 'fr-FR', 'fa-IR', 'he', '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.
isAlphanumeric(str , locale)check if the string contains only letters and numbers.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', 'fr-FR', 'fa-IR', 'he', '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.
isAscii(str)check if the string contains ASCII chars only.
isBase32(str)check if a string is base32 encoded.
isBase64(str)check if a string is base64 encoded.
isBefore(str , date)check if the string is a date that's before the specified date.
isIBAN(str)check if a string is a IBAN (International Bank Account Number).
isBIC(str)check if a string is a BIC (Bank Identification Code) or SWIFT code.
isBoolean(str)check if a string is a boolean.
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)check if the string is a credit card.
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.
isBtcAddress(str)check if the string is a valid BTC address.
isDataURI(str)check if the string is a data uri format.
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 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', 'hu-HU', 'it-IT', 'ku-IQ', 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'].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.
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, domain_specific_validation: false }. 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.
isEmpty(str , options)check if the string has a length of zero.options is an object which defaults to { ignore_whitespace:false }.
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 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', '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 }.
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 ['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.
isIdentityCard(str , locale)check if the string is a valid identity card code.locale is one of ['ES', 'zh-TW', 'he-IL'] OR 'any'. If 'any' is used, function will check if any of the locals match.Defaults to 'any'.
isIn(str, values)check if the string is in a 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)check if the string is an IP Range(version 4 only).
isISBN(str , version)check if the string is an ISBN (version 10 or 13).
isEAN(str)check if the string is an EAN (European Article Number).
isISIN(str)check if the string is an ISIN (stock/security identifier).
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.
isISO8601(str)check if the string is a valid ISO 8601 date; for additional checks for valid dates, e.g. invalidates dates like 2009-02-29, pass options object as a second parameter with options.strict = true.
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.
isISRC(str)check if the string is a ISRC.
isRFC3339(str)check if the string is a valid RFC 3339 date.
isJSON(str)check if the string is valid JSON (note: uses JSON.parse).
isJWT(str)check if the string is valid JWT token.
isLatLong(str)check if the string is a valid latitude-longitude coordinate in the format lat,long or lat, long.
isLength(str , options)check if the string's length falls in a range.options is an object which defaults to {min:0, max: undefined}. Note: this function takes into account surrogate pairs.
isLowercase(str)check if the string is lowercase.
isMACAddress(str)check if the string is a MAC address.options is an object which defaults to {no_colons: false}. If no_colons is true, the validator will allow MAC addresses without the colons. Also, it allows the use of hyphens or spaces e.g '01 02 03 04 05 ab' or '01-02-03-04-05-ab'.
isMagnetURI(str)check if the string is a magnet uri format.
isMD5(str)check if the string is a MD5 hash.
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 ['ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', ar-JO', 'ar-KW', 'ar-SA', 'ar-SY', 'ar-TN', 'be-BY', 'bg-BG', 'bn-BD', 'cs-CZ', 'de-DE', 'de-AT', 'da-DK', 'el-GR', 'en-AU', 'en-CA', 'en-GB', 'en-GG', 'en-GH', 'en-HK', 'en-MO', 'en-IE', 'en-IN', 'en-KE', 'en-MT', 'en-MU', 'en-NG', 'en-NZ', 'en-RW', 'en-SG', 'en-UG', 'en-US', 'en-TZ', 'en-ZA', 'en-ZM', 'en-PK', 'es-EC', 'es-ES', 'es-MX', 'es-PA', 'es-PY', 'es-UY', 'et-EE', 'fa-IR', 'fi-FI', 'fj-FJ', 'fr-FR', 'fr-GF', 'fr-GP', 'fr-MQ', 'fr-RE', 'he-IL', 'hu-HU', 'id-ID', 'it-IT', 'ja-JP', 'kk-KZ', 'ko-KR', 'lt-LT', 'ms-MY', 'nb-NO', 'ne-NP', 'nl-BE', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-PT', 'pt-BR', 'ro-RO', 'ru-RU', 'sl-SI', 'sk-SK', 'sr-RS', 'sv-SE', 'th-TH', 'tr-TR', 'uk-UA', '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}. If no_symbols is true, the validator will reject numeric strings that feature a symbol (e.g. +, -, or .).
isOctal(str)check if the string is a valid octal number.
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', 'BE', 'BG', 'BR', 'CA', 'CH', 'CZ', 'DE', 'DK', 'DZ', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'ID', 'IE' 'IL', 'IN', 'IR', 'IS', 'IT', 'JP', 'KE', 'LI', 'LT', 'LU', 'LV', 'MT', 'MX', 'NL', 'NO', 'NZ', 'PL', 'PR', 'PT', 'RO', 'RU', 'SA', 'SE', 'SI', 'TN', 'TW', 'UA', 'US', 'ZA', 'ZM' ] OR 'any'. If 'any' is used, function will check if any of the locals match. Locale list is validator.isPostalCodeLocales.).
isSurrogatePair(str)check if the string contains any surrogate pairs chars.
isURL(str , options)check if the string is an URL.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, disallow_auth: false }.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.allow_protocol_relative_urls - if set as true protocol relative URLs will be allowed.
isUppercase(str)check if the string is uppercase.
isUUID(str , version)check if the string is a UUID (version 3, 4 or 5).
isVariableWidth(str)check if the string contains a mixture of full and half-width chars.
isWhitelisted(str, chars)checks characters if they appear in the whitelist.
matches(str, pattern , modifiers)check if string matches the pattern.Either matches('foo', /foo/i) or matches('foo', 'foo', 'i').

Sanitizers

Here is a list of the sanitizers currently available.

SanitizerDescription
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.
unescape(input)replaces HTML encoded entities with <, >, &, ', " and /.
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)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's 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.
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, '\\[\\]').
isSlugCheck if the string is of type slug. Options allow a single hyphen between string. e.g. cn-cn, cn-c-c

####Uso

let stringValidator = v.stringVal;
if(stringValidator.isEmail("person@gmail.com")) console.log("es un email");

Tests

Los tests funcionan con mocha.

Para correr los tests:

   npm test