validity-email
v1.0.0
Published
Validity style validator to ensure that a property is a valid email address.
Downloads
59
Readme
validity-email
Validity style validator to ensure that a property is a valid email address.
As part of the modularisation of validity, this replaces the built-in validity.email
.
Installation
npm install --save validity-email
Usage
const schemata = require('schemata')
, email = require('validity-email')
, schema = schemata(
{ emailAddress:
{ validators: [ email ] }
})
, schemaWithCustomMessage = schemata(
{ emailAddress:
{ validators: [ email.setFailureMessage('#{name} not valid') ] }
})
schema.validate({}, function (error, errors) {
console.log(error, errors)
// null, 'Email Address must be a valid email address'
})
schemaWithCustomMessage.validate({}, function (error, errors) {
console.log(error, errors)
// null, 'Email Address not valid'
})
Credits
License
ISC