0.1.3 • Published 12 years ago
validity-equal v0.1.3
validity-equal
Validity style validator to ensure a property is equal to some primitive value. This might seem trivial, but it's useful when you are leveraging schemata for its validation and error message for something like 'agreed to terms and conditions'.
Installation
npm install validity-equalUsage
Below is a simple example for usage with schemata:
var validity = require('validity')
, schemata = require('schemata')
, createValidator = require('validity-equal')
var schema = schemata(
{ waitTime:
{ type: Number
, agreedToTerms: { all: [ createValidator(true, 'Must agree to T&Cs') ] }
}
})
schema.validate({ agreedToTerms: true }, function (error, errorMessage) {
console.log(errorMessage) //-> undefined
})
schema.validate({ agreedToTerms: false }, function (error, errorMessage) {
console.log(errorMessage) //-> 'Must agree to T&Cs'
})API
var validate = createValidator(Mixed: value, String: failureMessage)
Equality check is done with === so value must be primitive.
validate(String:key, String:keyDisplayName, Object:object, Function:cb)
This is a validity compatible function, which in turn is used by schemata for schema validation.
The callback signature cb(err, errorMessage).
erris anErrorobject if something bad happened andnullotherwise.errorMessageis aStringif a validation error happened andundefinedotherwise.
Licence
Licensed under the New BSD License
