UNPKG

typedash

Version:

modern, type-safe collection of utility functions

12 lines (11 loc) 321 B
// src/functions/zip/zip.ts function zip(first, second) { const result = []; for (let index = 0; index < Math.min(first.length, second.length); index++) { result.push([first[index], second[index]]); } return result; } export { zip }; //# sourceMappingURL=out.js.map //# sourceMappingURL=chunk-JSWCI7X6.js.map