UNPKG

email-misspelled

Version:

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

6 lines (5 loc) 227 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.containsOneAt = void 0; const containsOneAt = (email = "") => email.replace(/[^@]/g, "").length === 1; exports.containsOneAt = containsOneAt;