You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
.. | ||
.travis.yml | 3 years ago | |
CHANGELOG.md | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago | |
index.cjs.js | 3 years ago | |
index.cjs.js.map | 3 years ago | |
index.d.ts | 3 years ago | |
index.js | 3 years ago | |
package.json | 3 years ago | |
test.js | 3 years ago |
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.