@f/zip-obj

Create an object from a list of keys and values.

Usage no npm install needed!

<script type="module">
  import fZipObj from 'https://cdn.skypack.dev/@f/zip-obj';
</script>

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