UNPKG

@smallpdf/is-email

Version:

Email address validation using the regex from the specs for an InputHTMLElement

4 lines (3 loc) 229 B
var pattern = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/ module.exports = pattern.test.bind(pattern); module.exports.pattern = pattern;