extract-email

1.1.3 • Public • Published

extract-email

A simple email extractor for obfuscated emails.

logo

version downloads node status

Installation

npm install extract-email

Usage

String Extract

const ExtractEmail = require('extract-email');
 
let dotwords = [".","[dot]","-dot-"];
let atwords = ["@","[at]","-at-"];
let res = ExtractEmail.String("mehmet.kozan[at]live[dot]com",atwords,dotwords);
console.log(res[0].email);//mehmet.kozan@live.com

Text File Extract (not implemented)

const ExtractEmail = require('extract-email');
 
//not implemented

CSV Extract (not implemented)

const ExtractEmail = require('extract-email');
 
//not implemented

Excel Extract (not implemented)

const ExtractEmail = require('extract-email');
 
//not implemented

Test

mocha or npm test

check test folder and QUICKSTART.js for extra usage.

Package Sidebar

Install

npm i extract-email

Weekly Downloads

492

Version

1.1.3

License

MIT

Last publish

Collaborators

  • mehmet.kozan