zipWith.js 336 B

12345678910
  1. import { __read, __spreadArray } from "tslib";
  2. import { zip } from './zip';
  3. export function zipWith() {
  4. var otherInputs = [];
  5. for (var _i = 0; _i < arguments.length; _i++) {
  6. otherInputs[_i] = arguments[_i];
  7. }
  8. return zip.apply(void 0, __spreadArray([], __read(otherInputs)));
  9. }
  10. //# sourceMappingURL=zipWith.js.map