Reviewed-on: #8 Co-authored-by: Patrick Mueller <patrick@mueller-patrick.tech> Co-committed-by: Patrick Mueller <patrick@mueller-patrick.tech>
This commit was merged in pull request #8.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// Intentionally permissive - "looks like an email" (something@something.tld),
|
||||
// not full RFC 5322 validation. Good enough to catch typos without rejecting
|
||||
// real addresses RFC 5322 edge cases would.
|
||||
const EMAIL_REGEX = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
||||
|
||||
export const isValidEmail = (email: string): boolean => EMAIL_REGEX.test(email.trim());
|
||||
Reference in New Issue
Block a user