zip-object

Create an object from from arrays of keys and values

1 个版本
安装
npm install zip-object
yarn add zip-object
pnpm add zip-object
bun add zip-object
README

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
版本列表
0.1.0 2014-01-25