Skip to content

Instantly share code, notes, and snippets.

@webshru
Created October 23, 2019 20:34
Show Gist options
  • Save webshru/c791e4e148f1e27a8e33f59a52ae18ed to your computer and use it in GitHub Desktop.
Save webshru/c791e4e148f1e27a8e33f59a52ae18ed to your computer and use it in GitHub Desktop.
Проверка валидного email
const validateEmail = (email) => {
const re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
return re.test(email)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment