|
|
před 5 roky | |
|---|---|---|
| .. | ||
| test | před 5 roky | |
| .npmignore | před 5 roky | |
| .testem.json | před 5 roky | |
| .travis.yml | před 5 roky | |
| LICENCE | před 5 roky | |
| README.md | před 5 roky | |
| index.js | před 5 roky | |
| package.json | před 5 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