1.0.2 • Published 5 years ago

array-2-map v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

array-2-map

Build Status Coverage Status License

A tool that converts an array to a map.

Installation

npm install array-2-map

Usage

const toKeyMap = require('array-2-map');

const map = toKeyMap([1, 2, "abc"]);

const array = [
  { value: 'key1', label: 'KEY1' },
  { value: 'key2', label: 'KEY2' }
];

const map1 = toKeyMap(array, 'value');
// { key1: { value: 'key1', label: 'KEY1' }, key2: { value: 'key2', label: 'KEY2' } }

const map2 = toKeyMap(array, 'value', x => x.label);
// {key1: "KEY1", key2: "KEY2"}