UNPKG

email-validator-ultimate

Version:

Advanced email validator ultimate library for Node.js. Includes format checks, MX records, SMTP inbox validation, disposable email detection, and quality scoring. email validation email validator

8 lines (7 loc) 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isGeneric = isGeneric; const GENERIC_USERNAMES = ['info', 'admin', 'contact', 'sales', 'support']; function isGeneric(username) { return GENERIC_USERNAMES.includes(username); }