Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Utility for generalized mapping of an array to a map

License

Notifications You must be signed in to change notification settings

enkidevs/array-to-map

Repository files navigation

array-to-map

CircleCI npm version

Converting an array into a Map.

const map = arrayToMap([
 { id: 'a', value: 1 },
 { id: 'b', value: 2 },
 { id: 'c', value: 3 },
]);
console.log(map);
/*
{
 {0 => { id: 'a', value: 1 }}
 {1 => { id: 'b', value: 2 }}
 {2 => { id: 'c', value: 3 }}
}
*/

You can decide how the keys are created:

const map = arrayToMap([
 { id: 'a', value: 1 },
 { id: 'b', value: 2 },
 { id: 'c', value: 3 },
], item => item.id);
console.log(map);
/*
{
 {'a' => { id: 'a', value: 1 }}
 {'b' => { id: 'b', value: 2 }}
 {'c' => { id: 'c', value: 3 }}
}
*/

License

MIT

About

Utility for generalized mapping of an array to a map

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

AltStyle によって変換されたページ (->オリジナル) /