🦄 Simple Utility to Extract the domain from an email address.
- Node.js 12X LTS or 14X LTS 📦
- Install the NPM Package with the below command:
npm install extract-email-domain --save
(or)
- Install with Yarn:
yarn add extract-email-domain
- Import the module in your project:
// Commonjs Import
var extractDomain = require("extract-email-domain");
// or ES6 import
import extractDomain from "extract-email-domain";
- Import the module in your project
- Pass the email address to the function
var extractDomain = require("extract-email-domain");
myEmail = "me@mcnaveen.com";
const getEmail = extractDomain(myEmail);
console.log(getEmail);
mcnaveen.com
I hope you find this useful. If you have any questions, please create an issue.