d7e11b592b451915dfd90cbfe7b66b10d3623d0c857f8496d14be679251e22cb6b3c134ce4aab7516a9b889f6d97bf2fc039a2d180447eaa8e513a957a5ac2 391 B

1234567891011
  1. /** PURE_IMPORTS_START _of,_operators_concatAll PURE_IMPORTS_END */
  2. import { of } from './of';
  3. import { concatAll } from '../operators/concatAll';
  4. export function concat() {
  5. var observables = [];
  6. for (var _i = 0; _i < arguments.length; _i++) {
  7. observables[_i] = arguments[_i];
  8. }
  9. return concatAll()(of.apply(void 0, observables));
  10. }
  11. //# sourceMappingURL=concat.js.map