This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

13
node_modules/rxjs/dist/esm5/internal/operators/zip.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import { __read, __spreadArray } from "tslib";
import { zip as zipStatic } from '../observable/zip';
import { operate } from '../util/lift';
export function zip() {
var sources = [];
for (var _i = 0; _i < arguments.length; _i++) {
sources[_i] = arguments[_i];
}
return operate(function (source, subscriber) {
zipStatic.apply(void 0, __spreadArray([source], __read(sources))).subscribe(subscriber);
});
}
//# sourceMappingURL=zip.js.map