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