stringsplz
v0.1.2
Published
A simple toString()-ing through stream.
Downloads
7
Maintainers
Readme
stringsplz
A through transform stream that emits it's data.toString()-ed.in the callback. Useful for saving a dozen keystrokes when piping to write streams that expect data to be stringified.
var stringsplz = require('stringsplz');
// works
buffersStream.pipe(stringsplz).pipe(fs.createWriteStream('stringsplz.txt');
// works
objectsStream.pipe(stringsplz).pipe(fs.createWriteStream('stringsplz.txt');