lib-stream-stringify
v0.0.0
Published
strings to streams
Downloads
5
Readme
lib-stream-stringify
strings to streams
install
npm install --save lib-stream-stringify
usage
var stringify = require('lib-stream-stringify');
var string = "Hello world, what's new?";
stringify(string).pipe(process.stdout);
// Hello world, what's new?