Front end of the Slack clone application.

combineAll.js 307B

1234567
  1. /** PURE_IMPORTS_START .._operators_combineLatest PURE_IMPORTS_END */
  2. import { CombineLatestOperator } from '../operators/combineLatest';
  3. export function combineAll(project) {
  4. return function (source) { return source.lift(new CombineLatestOperator(project)); };
  5. }
  6. //# sourceMappingURL=combineAll.js.map