git-svn-id: https://svn.libreccm.org/ccm/trunk@5740 8810af33-2d31-482b-a856-94f89814c4df |
||
|---|---|---|
| .. | ||
| test | ||
| .npmignore | ||
| README.md | ||
| index.js | ||
| package.json | ||
README.md
zip-object
Create an object from from arrays of keys and values. (Inspired by lodash's _.zipObject)
Install
npm install zip-object --save
Usage
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'
Run Tests
npm install
npm test