cv-url
v0.2.0
Published
The Official URL Validator
Maintainers
Readme
URL Validator Plugin for Composed Validations Library
This is the Official URL Validator Plugin for the Composed Validations Library.
Installation
npm install cv-urlHow to Use
var validations = require('composed-validations');
var urlValidator = require('cv-url')(validations);
urlValidator.test("http://www.RegExr.com"); // will return http://www.RegExr.com
urlValidator.test('\\http@://google.com'); // false (will throw an error with the error message: is not a valid url)
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -m 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D

