bec670814883d7b0846c66379b80c2d33a6df21ee45d345ecb01834a7153ec3f5cd2361223e6e2d2866e3a2c8fcb7c7f5756f5e34f17502db4049c12de001e 275 B

12345678
  1. import { zip as zipStatic } from '../observable/zip';
  2. import { operate } from '../util/lift';
  3. export function zip(...sources) {
  4. return operate((source, subscriber) => {
  5. zipStatic(source, ...sources).subscribe(subscriber);
  6. });
  7. }
  8. //# sourceMappingURL=zip.js.map