1337cat

Writeable stream that concatenates all the data as 1337sp34k and calls a callback with the result.

Usage no npm install needed!

<script type="module">
  import 337cat from 'https://cdn.skypack.dev/1337cat';
</script>

README

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'
  }))