es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
19 lines (15 loc) • 535 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function unzipWith(target, iteratee) {
const maxLength = Math.max(...target.map(innerArray => innerArray.length));
const result = new Array(maxLength);
for (let i = 0; i < maxLength; i++) {
const group = new Array(target.length);
for (let j = 0; j < target.length; j++) {
group[j] = target[j][i];
}
result[i] = iteratee(...group);
}
return result;
}
exports.unzipWith = unzipWith;