1.0.0-alpha.2 • Published 9 years ago
rx-thenable v1.0.0-alpha.2
rx-thenable
Patches RxJS to allow Observables
to be consumed as Promises
:
var Rx = require('rx');
require('rx-thenable')(Rx);
Rx.Observable.range(0, 5).then(function(result) {
// on result
}, function(err) {
// on err
});
This functionality is only made available if the environment supports Promises/A+ conformant promises.