email-misspelled
Version:
Check misspell email's domain and return a list of matching domain suggestions
22 lines (21 loc) • 642 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.all = void 0;
const aol_js_1 = require("./aol.js");
const hotmail_js_1 = require("./hotmail.js");
const live_js_1 = require("./live.js");
const outlook_js_1 = require("./outlook.js");
const more_js_1 = require("./more.js");
const top100_js_1 = require("./top100.js");
const yahoo_js_1 = require("./yahoo.js");
exports.all = [
...new Set([
...top100_js_1.top100,
...aol_js_1.aol,
...hotmail_js_1.hotmail,
...live_js_1.live,
...outlook_js_1.outlook,
...more_js_1.more,
...yahoo_js_1.yahoo
])
];