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 250B

1234567
  1. import { zip as zipStatic } from '../observable/zip';
  2. export function zip(...observables) {
  3. return function zipOperatorFunction(source) {
  4. return source.lift.call(zipStatic(source, ...observables));
  5. };
  6. }
  7. //# sourceMappingURL=zip.js.map