1.1.3 • Published 6 years ago

extract-email v1.1.3

Weekly downloads
518
License
MIT
Repository
gitlab
Last release
6 years ago

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.