https://github.com/confuser/node-validity-required-options
Validity style validator which validates a field against a set of valid options
https://github.com/confuser/node-validity-required-options
Last synced: 9 months ago
JSON representation
Validity style validator which validates a field against a set of valid options
- Host: GitHub
- URL: https://github.com/confuser/node-validity-required-options
- Owner: confuser
- License: bsd-3-clause
- Created: 2014-04-08T16:56:41.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-06T10:24:41.000Z (about 12 years ago)
- Last Synced: 2025-08-14T02:23:26.642Z (10 months ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# validity-required-options
[](https://travis-ci.org/confuser/node-validity-required-options)
Validity style validator which validates a field against a set of valid options
## Installation
npm install validity-required-options
## Usage
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' ]) ] }
}
})
```
## 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](http://opensource.org/licenses/bsd-license.php)