Skip to content

Instantly share code, notes, and snippets.

@stebunovd
Last active April 6, 2025 06:17
Show Gist options
  • Save stebunovd/5c971eb955b76fed7d988abe4c6b04bf to your computer and use it in GitHub Desktop.
Save stebunovd/5c971eb955b76fed7d988abe4c6b04bf to your computer and use it in GitHub Desktop.
sample email validation function
function isValidEmail(email: string): boolean {
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return emailRegex.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment