This repository has been archived by the owner on Apr 20, 2018. It is now read-only.
RxJS Release v2.2.20
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