validity-alphanumeric-property

0.0.2 • Public • Published

validity-alphanumeric-property

Build Status

Validity style validator to ensure a property is alphanumeric.

Installation

npm install validity-alphanumeric-property

Usage

Below is a simple example for usage with schemata and save:

var validity = require('validity');
var schemata = require('schemata');
var alphanumericPropertyValidator = require('validity-alphanumeric-property');
 
var schema = schemata({
  emailAddress: {
    type: String,
    validators: { all: [alphanumericPropertyValidator] }
  }
});

API

alphanumericPropertyValidator(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

Readme

Keywords

none

Package Sidebar

Install

npm i validity-alphanumeric-property

Weekly Downloads

1

Version

0.0.2

License

BSD-2-Clause

Last publish

Collaborators

  • oliverjash