array-to-map

Light utility to convert your [keys] to a {key:key} map

Usage no npm install needed!

<script type="module">
  import arrayToMap from 'https://cdn.skypack.dev/array-to-map';
</script>

README

array-to-map

Light utility to convert your [keys] to a {key:key} map

Usage

var getMap = require('array-to-map');

var map = getMap([1, 2, "abc"]);
// {'1':1, '2':2, 'abc':'abc'}

The best use case for this tool is when a conversion from an array to a map is needed for efficient membership checking.

Gotchas

Unserializable elements like objects and functions are ignored by this tool.

So something like,

var getMap = require('array-to-map');

var map = getMap([1, 2, "abc", {key:123}, function () {}]);
// Still {'1':1, '2':2, 'abc':'abc'}