normalize-email
v1.1.1
Published
Normalize + and . emails for uniqueness validation
Downloads
66,310
Maintainers
Readme
normalize-email
Normalize emails for uniqueness validation. This will convert the email to lowercase, remove dots (.
), and plus signs
followed by arbitrary strings (+foobar
).
Based on normailize.
Installation
npm install --save normalize-email
Usage
var normalizeEmail = require('normalize-email')
normalizeEmail('[email protected]') // => '[email protected]'
normalizeEmail('[email protected]') // => '[email protected]'
normalizeEmail('[email protected]') // => '[email protected]'
normalizeEmail('[email protected]') // => '[email protected]'
normalizeEmail('[email protected]') // => '[email protected]'
License
MIT
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Crafted with <3 by John Otander (@4lpine).
This package was initially generated with yeoman and the p generator.