commons-validator-js
v1.0.1669
Published
JavaScript port of Apache Commons Validator
Downloads
151,821
Readme
commons-validator-js
JavaScript port of Apache Commons Validator.
Usage - npm
Install the library with npm install commons-validator-js
var EmailValidator = require('commons-validator-js').EmailValidator;
var validator = new EmailValidator();
validator.isValid('[email protected]'); //=> true
validator.isValid('[email protected]'); //=> false (can your validator do this?)Usage - bower
Install the library: bower install commons-validator-js.
Add a reference: 'bower_components/commons-validator-js/dist/commons-validator-js.js'
Then use the global constructor: var EmailValidator = CommonsValidator.EmailValidator; and proceed as shown in the npm usage example above.
