sodesu-comment
Version:
Comment system with SolidJS
9 lines (7 loc) • 308 B
text/typescript
/**
* @ref https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address
*/
const EMAIL_REG_EXP =
/^[\w.!#$%&'*+/=?^`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i;
export const isValidEmail = (email: string): boolean =>
EMAIL_REG_EXP.test(email);