Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@f/zip-obj

micro-js88MIT1.1.1

Create an object from a list of keys and values.

readme

zip-obj

Build status Git tag NPM version Code style

Create an object from a list of keys and values.

Installation

$ npm install @f/zip-obj

Usage

var zipObj = require('@f/zip-obj')

zipObj([1, 2], [1, 2]) // => {1: 1, 2: 2}

API

zipObj(keys, values)

  • keys - list of keys for new object
  • values - list of values for new object

Returns: object with keys and values

License

MIT