UNPKG

email-misspelled

Version:

Check misspell email's domain and return a list of matching domain suggestions

6 lines (5 loc) 223 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDomain = void 0; const getDomain = (email = "") => email.includes("@") ? email.replace(/.*@/, "") : ""; exports.getDomain = getDomain;