Skip to content

Instantly share code, notes, and snippets.

@belchior
Last active January 29, 2016 18:41
Show Gist options
  • Save belchior/2acd11ad848bd6ac1524 to your computer and use it in GitHub Desktop.
Save belchior/2acd11ad848bd6ac1524 to your computer and use it in GitHub Desktop.
function to validate email in javascript
function isEmail(email) {
if (typeof email !== 'string') {
return false;
}
return email.match(/[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/) ? true : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment