1.0.0-alpha.2 • Published 8 years ago

rx-thenable v1.0.0-alpha.2

Weekly downloads
10
License
Apache-2.0
Repository
github
Last release
8 years ago

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.