Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created August 10, 2021 15:28
Show Gist options
  • Save ernestofreyreg/393b7a88948fbbc459102a0ddd405cc8 to your computer and use it in GitHub Desktop.
Save ernestofreyreg/393b7a88948fbbc459102a0ddd405cc8 to your computer and use it in GitHub Desktop.
const re = /[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/
export const isValidEmail = (email: string): boolean => re.test(email)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment