email-stripper

0.1.1 • Public • Published

email-stripper Build Status

A tool to find and remove email addresses from a set of text. Sentences that contain the email address will be removed.

Getting Started

Install the module with: npm install email-stripper

var strip = require('email-stripper')
 
var fs = require('fs')
var input = fs.createReadStream(__dirname + '/test-file.txt')
input.pipe(strip)
strip.on('readable', function () {
     var sentence
     while (sentence = strip.read()) {
          //Do something with sentence
     }
})

License

Copyright (c) 2015 Sterling Jordan Calder
Licensed under the MIT license.

Package Sidebar

Install

npm i email-stripper

Weekly Downloads

1

Version

0.1.1

License

none

Last publish

Collaborators

  • jordancalder