UNPKG

typia

Version:

Superfast runtime validators with only one line

5 lines (3 loc) 234 B
export const _isFormatEmail = (str: string): boolean => PATTERN.test(str); const PATTERN = /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i;