Last active
September 15, 2016 09:49
-
-
Save zmts/55e3a378f384e9209fb4b42b4ecdfa46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function check(mail){ | |
return /^[0-9a-z]([\.-]?\w+)*@[0-9a-z]([\.-]?[0-9a-z])*(\.[0-9a-z]{2,4})+$/i.test(mail) | |
} | |
console.log( check('[email protected]') ) // >> true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment