agsamantha/node_modules/langchain/dist/chains/router/utils.cjs
2024-10-02 15:15:21 -05:00

34 lines
1.3 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.zipEntries = void 0;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function zipEntries(...arrays) {
// Check for empty input
if (arrays.length === 0) {
return [];
}
// Find the length of the first input array
const firstArrayLength = arrays[0].length;
// Ensure all input arrays have the same length
for (const array of arrays) {
if (array.length !== firstArrayLength) {
throw new Error("All input arrays must have the same length.");
}
}
// Create an empty array to store the zipped arrays
const zipped = [];
// Iterate through each element of the first input array
for (let i = 0; i < firstArrayLength; i += 1) {
// Create an array to store the zipped elements at the current index
const zippedElement = [];
// Iterate through each input array
for (const array of arrays) {
// Add the element at the current index to the zipped element array
zippedElement.push(array[i]);
}
// Add the zipped element array to the zipped array
zipped.push(zippedElement);
}
return zipped;
}
exports.zipEntries = zipEntries;