1.0.1 • Published 11 years ago
regex-email v1.0.1
regex-email
Regular expression for email. You shouldn't use RegExp for validating emails. Use it only for hinting to the user.
Installation
$ npm install regex-email
Usage
var regex = require('regex-email');
regex.test('tobi+ferret@vision.com');
// => true
See Also
- Update your Email RegExp by Dustin Diaz
- sindresorhus/email-regex
- You shouldn't use this for validating emails. Use it only for hinting to the user.