0.0.1 • Published 6 years ago

validate-email-js v0.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

Email check

Introduction

Email check is a npm module for NodeJS, that checks if an email address exists and valid.

It validates the email through regex.

Install

npm i validate-email-node-js

Usage

validateEmail(email)

The function signature accepts an arguments and returns a boolean value.

  • true (boolean) valid email address.
  • false (boolean) invalid email address.

Example

const validateEmail = require('validate-email-node-js');
const result = validateEmail('mail@example.com');

MIT License