combineLatestWith.js 389 B

12345678910
  1. import { __read, __spreadArray } from "tslib";
  2. import { combineLatest } from './combineLatest';
  3. export function combineLatestWith() {
  4. var otherSources = [];
  5. for (var _i = 0; _i < arguments.length; _i++) {
  6. otherSources[_i] = arguments[_i];
  7. }
  8. return combineLatest.apply(void 0, __spreadArray([], __read(otherSources)));
  9. }
  10. //# sourceMappingURL=combineLatestWith.js.map