validity-equal-field
Validity style validator to ensure a property is equal to another schemata field
Installation
npm install validity-equal-field
Usage
Below is a simple example for usage with schemata:
var validity = schemata = save = createValidator = var schema =
A custom error message can also be passed createValidator('vpassword', 'Passwords do not match')
API
var validate = createValidator()
Create a validate function.
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).
err is an Error object if something bad happened and null otherwise. errorMessage is a String if a validation error happened and undefined otherwise.
Licence
Licensed under the New BSD License