@sebgroup/frontend-tools
Version:
A set of frontend tools
12 lines (10 loc) • 425 B
JavaScript
/**
* Check if an email is valid
* @param {string} value email
* @returns {boolean} true if email is valid, false if email is not valid
*/
function isEmail(value) {
return new RegExp(/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/).test(value);
}
export { isEmail };
//# sourceMappingURL=isEmail.js.map