1.0.2 • Published 5 years ago

email-validation-pro v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Introduction

This is the plugin to check the provided email is valid or not. This plugin checks following things:

  • valid email format
  • valid tld
  • valid email host

Implementation

var validate = require('email-validation-pro')
validate.email(email); // check without email host
validate.email(email, true); // check with email host

Test

yarn test