Skip to content

Instantly share code, notes, and snippets.

@kingisaac95
Last active July 25, 2024 21:42
Show Gist options
  • Save kingisaac95/2a339378df2a246b3d656ee0d47ecf65 to your computer and use it in GitHub Desktop.
Save kingisaac95/2a339378df2a246b3d656ee0d47ecf65 to your computer and use it in GitHub Desktop.
const validateEmail = (email) => {
if (!email) return false;
return /^[\w\-.]+@([\w-]+\.)+[\w-]{2,}$/.test(email);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment