Skip to content

Instantly share code, notes, and snippets.

@zmts
Last active September 15, 2016 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zmts/55e3a378f384e9209fb4b42b4ecdfa46 to your computer and use it in GitHub Desktop.
Save zmts/55e3a378f384e9209fb4b42b4ecdfa46 to your computer and use it in GitHub Desktop.
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('some_name@mail.super.puper.ua') ) // >> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment