email-misspelled
Version:
Check misspell email's domain and return a list of matching domain suggestions
19 lines (18 loc) • 428 B
JavaScript
import { aol } from "./aol.js";
import { hotmail } from "./hotmail.js";
import { live } from "./live.js";
import { outlook } from "./outlook.js";
import { more } from "./more.js";
import { top100 } from "./top100.js";
import { yahoo } from "./yahoo.js";
export const all = [
...new Set([
...top100,
...aol,
...hotmail,
...live,
...outlook,
...more,
...yahoo
])
];