validity-equal-field

0.0.1 • Public • Published

validity-equal-field

Build Status

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 = require('validity')
  , schemata = require('schemata')
  , save = require('save')
  , createValidator = require('validity-equal-field')
 
var schema = schemata(
    { password:
      { type: String
      , validators: { all: [ createValidator('vpassword') ] }
      }
    , vpassword:
      { type: String }
    })

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

Package Sidebar

Install

npm i validity-equal-field

Weekly Downloads

38

Version

0.0.1

License

BSD-2-Clause

Last publish

Collaborators

  • confuser