Files
doneit-web/src/plugin/array.js
T

6 lines
229 B
JavaScript
Raw Normal View History

2022-01-29 19:21:46 +01:00
// https://stackoverflow.com/a/68628927/14115342
const ArrayToObject = (array = [], getKey) => array.reduce((obj, cur) => {
const key = getKey(cur);
return (Object.assign(Object.assign({}, obj), { [key]: cur }));
}, {});