Socket
Socket
Sign inDemoInstall

extract-email

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    extract-email

A simple email extractor for obfuscated emails.


Version published
Weekly downloads
77
decreased by-86.49%
Maintainers
1
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 15 Dec 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc