UNPKG

@amxdev/validate-email

Version:

Check if a string is a valid email address.

7 lines (6 loc) 203 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validateEmail = validateEmail; function validateEmail(email) { return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email); }