Skip to content

This is the Official Email Validator Plugin for the Composed Validations Library

License

Notifications You must be signed in to change notification settings

composed-validations/cv-email

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Email Validator Plugin for Composed Validations Library

Build Status

This is the Official Email Validator Plugin for the Composed Validations Library. The regex used in this plugin is based on the most pratical RFC 5322 standard. You can read more about the standard and the regex itself in: http://www.regular-expressions.info/email.html.

Installation

npm install cv-email

How to Use

var validations    = require('composed-validations');
var emailValidator = require('cv-email')(validations);

emailValidator.test("[email protected]"); // will return [email protected]
emailValidator.test("wrong email"); // false (will throw an error with the error message: is not a valid email)

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT License

About

This is the Official Email Validator Plugin for the Composed Validations Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published