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.
npm install cv-email
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)
- 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