source: node_modules/es-toolkit/dist/array/zipObject.mjs

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 189 bytes
Line 
1function zipObject(keys, values) {
2 const result = {};
3 for (let i = 0; i < keys.length; i++) {
4 result[keys[i]] = values[i];
5 }
6 return result;
7}
8
9export { zipObject };
Note: See TracBrowser for help on using the repository browser.