robert2206 8ad867f7a5 commit inicial | 8 năm trước cách đây | |
---|---|---|
.. | ||
test | 8 năm trước cách đây | |
.npmignore | 8 năm trước cách đây | |
README.md | 8 năm trước cách đây | |
index.js | 8 năm trước cách đây | |
package.json | 8 năm trước cách đây |
Create an object from from arrays of keys and values. (Inspired by lodash's _.zipObject)
npm install zip-object --save
Either takes two arrays or an array of arrays as the argument(s).
var zipObject = require('zip-object');
var zipped = zipObject(['key1', 'key2'], ['value1', 'value2']);
console.log(zipped.key1); // outputs 'value1'
console.log(zipped.key2); // outputs 'value2'
npm install
npm test