Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

RxJS Release v2.2.20

Compare
Choose a tag to compare
@mattpodwysocki mattpodwysocki released this 14 Apr 04:08
· 1935 commits to master since this release

Slight update to include bug fixes from RxJS v2.2.19 and adding more Promises support

Promises Support

The sequenceEqual operator now supports promises via 21ecc90. You can now specify a Promise as the other value such as the following:

var sequence = Rx.Observable.return(42);
var promise = new RSVP.Promise(function (res, rej) { res(42); });

var equal = sequence.sequenceEqual(promise);
var subscription = equal.subscribe(console.log.bind(console));
// => true

Bugs Closed

  • Issue #137 - Fixed jQuery bridge
  • Issue #138 - Created reference to Rx.Scheduler.timeout
  • Issue #139 - Fixed jQuery bridge