rxjs-compat
Version:
[](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat
13 lines • 536 B
JavaScript
import { of } from 'rxjs';
import { isArray, CombineLatestOperator } from 'rxjs/internal-compatibility';
export function combineLatest(...observables) {
let project = null;
if (typeof observables[observables.length - 1] === 'function') {
project = observables.pop();
}
if (observables.length === 1 && isArray(observables[0])) {
observables = observables[0].slice();
}
return this.lift.call(of(this, ...observables), new CombineLatestOperator(project));
}
//# sourceMappingURL=combineLatest.js.map