fromWritableStream
Rx.Node.fromWritableStream(stream)
Rx.Node.fromWritableStream(stream)Arguments
Returns
Example
var Rx = require('rx');
var subscription = Rx.Node.fromWritableStream(process.stdout)
.subscribe(function (x) { console.log(x); });
// => r<Buffer 72>
// => x<Buffer 78>Last updated