|
|
hace 5 años | |
|---|---|---|
| .. | ||
| test | hace 5 años | |
| .npmignore | hace 5 años | |
| .testem.json | hace 5 años | |
| .travis.yml | hace 5 años | |
| LICENCE | hace 5 años | |
| README.md | hace 5 años | |
| index.js | hace 5 años | |
| package.json | hace 5 años | |
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