UNPKG
@zhsz/cool-design-dv
Version:
latest (1.0.29)
1.0.29
1.0.28
1.0.26
1.0.24
1.0.23
1.0.22
1.0.21
1.0.20
1.0.19
1.0.17
@zhsz/cool-design-dv
/
es
/
utils
/
dictionary.mjs
11 lines
(10 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function
arrayToMap
(
array = [], label =
"label"
, value =
"value"
) {
const
map =
/* @__PURE__ */
Object
.
create
(
null
); array.
forEach
(
(
item
) =>
{ map[item[label]] = item[value]; });
return
map; }
export
{ arrayToMap };