validity-date-before-property

0.0.1 • Public • Published

validity-date-before-property

build status

Validity style validator to ensure a property has a date before another date property.

Installation

  npm install validity-date-before-property

Usage

Below is a simple example for usage with schemata:

 
var validity = require('validity')
  , schemata = require('schemata')
  , dateBeforeProperty = require('validity-date-before-property')
 
var schema = schemata(
    { startDate:
      { type: Date
      , validators:
        { all: [dateBeforeProperty()]
        }
      }
      , expiryDate:
      { type: Date
      }
    })
 
schema.validate({ startDate: 2, expiryDate: 1 }, function (error, valid) {
  // Show the error
  console.log(valid)
})
 

Credits

Paul Serby follow me on twitter @serby

Licence

Licensed under the New BSD License

Readme

Keywords

none

Package Sidebar

Install

npm i validity-date-before-property

Weekly Downloads

65

Version

0.0.1

License

none

Last publish

Collaborators

  • microadam
  • serby
  • jack828