UNPKG

typia

Version:

Superfast runtime validators with only one line

5 lines (3 loc) 217 B
export const _isFormatIdnEmail = (str: string): boolean => PATTERN.test(str); const PATTERN = /^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;