0.0.1 • Published 11 years ago

validity-date-before-property v0.0.1

Weekly downloads
87
License
-
Repository
github
Last release
11 years ago

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