Add production dependencies
This commit is contained in:
parent
5a0114f3e2
commit
579ccdc29f
12113 changed files with 978046 additions and 3 deletions
15
node_modules/rxjs/_esm2015/internal/operators/combineLatest.js
generated
vendored
Normal file
15
node_modules/rxjs/_esm2015/internal/operators/combineLatest.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { isArray } from '../util/isArray';
|
||||
import { CombineLatestOperator } from '../observable/combineLatest';
|
||||
import { from } from '../observable/from';
|
||||
const none = {};
|
||||
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 (source) => source.lift.call(from([source, ...observables]), new CombineLatestOperator(project));
|
||||
}
|
||||
//# sourceMappingURL=combineLatest.js.map
|
Loading…
Add table
Add a link
Reference in a new issue