Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

zip.js 441B

123456789101112
  1. /** PURE_IMPORTS_START _observable_zip PURE_IMPORTS_END */
  2. import { zip as zipStatic } from '../observable/zip';
  3. export function zip() {
  4. var observables = [];
  5. for (var _i = 0; _i < arguments.length; _i++) {
  6. observables[_i] = arguments[_i];
  7. }
  8. return function zipOperatorFunction(source) {
  9. return source.lift.call(zipStatic.apply(void 0, [source].concat(observables)));
  10. };
  11. }
  12. //# sourceMappingURL=zip.js.map