1.1.0 • Published 2 years ago

@clocklimited/validity-email v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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.

build status dependency status

Installation

npm install --save @clocklimited/validity-email

Usage

const schemata = require('schemata')
  , email = require('@clocklimited/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

Paul Serby

License

ISC