Skip to content
This repository has been archived by the owner on Jul 9, 2019. It is now read-only.

Releases: blendle/emailcorrect

v0.0.2

29 Jun 08:24
Compare
Choose a tag to compare

Update README.md to reflect installation options

v0.0.1

29 Jun 07:58
Compare
Choose a tag to compare

First release of EmailCorrect! This release contains a module only implementation. If you wish to build EmailCorrect to a UMD release, feel free to create a pull request.

Basic usage:

$ npm install --save emailcorrect
import { suggest } from 'emailcorrect';

expect(suggest('jesse@hotmial.com')).to.equal('jesse@hotmail.com'); 
expect(suggest('jesse@hotmail.con')).to.equal('jesse@hotmail.com');
expect(suggest('hotmial.con')).to.equal('hotmial.con');