zipWith.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. "use strict";
  2. var __read = (this && this.__read) || function (o, n) {
  3. var m = typeof Symbol === "function" && o[Symbol.iterator];
  4. if (!m) return o;
  5. var i = m.call(o), r, ar = [], e;
  6. try {
  7. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  8. }
  9. catch (error) { e = { error: error }; }
  10. finally {
  11. try {
  12. if (r && !r.done && (m = i["return"])) m.call(i);
  13. }
  14. finally { if (e) throw e.error; }
  15. }
  16. return ar;
  17. };
  18. var __spreadArray = (this && this.__spreadArray) || function (to, from) {
  19. for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
  20. to[j] = from[i];
  21. return to;
  22. };
  23. Object.defineProperty(exports, "__esModule", { value: true });
  24. exports.zipWith = void 0;
  25. var zip_1 = require("./zip");
  26. function zipWith() {
  27. var otherInputs = [];
  28. for (var _i = 0; _i < arguments.length; _i++) {
  29. otherInputs[_i] = arguments[_i];
  30. }
  31. return zip_1.zip.apply(void 0, __spreadArray([], __read(otherInputs)));
  32. }
  33. exports.zipWith = zipWith;
  34. //# sourceMappingURL=zipWith.js.map