1.0.0 • Published 8 years ago

validity-required v1.0.0

Weekly downloads
74
License
ISC
Repository
github
Last release
8 years ago

validity-required

Basic validity style validator to ensure a required property is present in an object.

As part of the modularisation of validity, this replaces the built-in validity.required.

build status dependency status

Installation

npm install --save validity-required

Usage

const schemata = require('schemata')
  , required = require('.')
  , schema = schemata(
    { emailAddress:
      { validators: [ required ] }
    })
  , schemaWithCustomMessage = schemata(
    { emailAddress:
      { validators: [ required.setFailureMessage('Where is #{name}?') ] }
    })


schema.validate({}, function (error, errors) {
  console.log(error, errors)
  // null, 'Email Address is required'
})

schemaWithCustomMessage.validate({}, function (error, errors) {
  console.log(error, errors)
  // null, 'Where is Email Address?'
})

Credits

Paul Serby

License

ISC