validity-required-options
Version:
Validity style validator which validates a field against a set of valid options
48 lines (30 loc) • 1.26 kB
Markdown
[](https://travis-ci.org/confuser/node-validity-required-options)
Validity style validator which validates a field against a set of valid options
npm install validity-required-options
Below is a simple example for usage with schemata:
```js
var validity = require('validity')
, schemata = require('schemata')
, save = require('save')
, createValidator = require('validity-required-options')
var schema = schemata(
{ state:
{ type: String
, validators: { all: [ createValidator([ 'option1', 'option2' ]) ] }
}
})
```
Create a validate function.
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](http://opensource.org/licenses/bsd-license.php)