Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 984 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 984 Bytes

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"}