|
před 4 roky | |
---|---|---|
.. | ||
test | před 4 roky | |
.npmignore | před 4 roky | |
.testem.json | před 4 roky | |
.travis.yml | před 4 roky | |
LICENCE | před 4 roky | |
README.md | před 4 roky | |
index.js | před 4 roky | |
package.json | před 4 roky |
A writable stream that writes to the console
Refactored out of tape
var ConsoleStream = require("console-stream")
var stream = ConsoleStream()
stream.write("one")
stream.write("two\n")
// console.log('onetwo')
stream.write("three\nfour")
// console.log('three')
stream.end("five")
// console.log('fourfive')
npm install console-stream