085d7c68ba | ||
---|---|---|
.. | ||
.travis.yml | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
index.cjs.js | ||
index.cjs.js.map | ||
index.d.ts | ||
index.js | ||
package.json | ||
test.js |
README.md
email-validator
A simple module to validate an e-mail address
Installation
Install via NPM:
npm install email-validator
Usage
javascript
var validator = require("email-validator");
validator.validate("test@email.com"); // true
TypeScript
import * as EmailValidator from 'email-validator';
EmailValidator.validate("test@email.com"); // true
Contribute
Contributions welcome! Check the LICENSE
file for more info.
Meta
Distributed under the unlicense public domain. See LICENSE
for more information.