Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Latest commit

 

History

History
14 lines (9 loc) · 354 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 354 Bytes

#valid-email

##Validate Email Addresses w/o pure regular expressions. Regular expression validation is often useful, but also often inaccurate. Sometimes it's just better to do it manually

Example

    console.log(require('valid-email')('[email protected]'))//#true
    console.log(require('valid-email')('iamjohnhenry.com'))//#false