{"version":3,"sources":["../../src/functions/zip/zip.ts"],"names":[],"mappings":";AAAO,SAAS,IAAU,OAAqB,QAAgC;AAC7E,QAAM,SAAmB,CAAC;AAE1B,WAAS,QAAQ,GAAG,QAAQ,KAAK,IAAI,MAAM,QAAQ,OAAO,MAAM,GAAG,SAAS;AAC1E,WAAO,KAAK,CAAC,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC,CAAC;AAAA,EAC3C;AAEA,SAAO;AACT","sourcesContent":["export function zip<T, U>(first: readonly T[], second: readonly U[]): [T, U][] {\n  const result: [T, U][] = [];\n\n  for (let index = 0; index < Math.min(first.length, second.length); index++) {\n    result.push([first[index], second[index]]);\n  }\n\n  return result;\n}\n"]}