1.0.1 • Published 8 years ago

1337cat v1.0.1

Weekly downloads
48
License
MIT
Repository
github
Last release
8 years ago

1337cat

Writable stream that transforms data from a stream into l33tsp34k, concatenates that data, and calls a callback with the result.

build status

js-standard-style

Concatenates l33tsp34k!

npm install 1337cat -S

Usage

const fs = require('fs')
const leetcat = require('1337cat')

fs.createReadStream(__dirname + '/leet.txt')
  .pipe(leetcat(buf => {
    console.log(buf.toString()) // '1337\n'
  }))