combineLatestAll.js 259 B

123456
  1. import { combineLatest } from '../observable/combineLatest';
  2. import { joinAllInternals } from './joinAllInternals';
  3. export function combineLatestAll(project) {
  4. return joinAllInternals(combineLatest, project);
  5. }
  6. //# sourceMappingURL=combineLatestAll.js.map