🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

extract-email

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extract-email

A simple email extractor for obfuscated emails.

1.1.3
latest
Source
npm
Version published
Weekly downloads
251
114.53%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

email

FAQs

Package last updated on 15 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts