mirror of
https://github.com/certd/certd.git
synced 2026-04-03 14:10:54 +08:00
34 lines
569 B
TypeScript
34 lines
569 B
TypeScript
import _ from "lodash";
|
|
export default {
|
|
arrayToMap(array) {
|
|
if (!array) {
|
|
return {};
|
|
}
|
|
if (!_.isArray(array)) {
|
|
return array;
|
|
}
|
|
const map = {};
|
|
for (const item of array) {
|
|
if (item.key) {
|
|
map[item.key] = item;
|
|
}
|
|
}
|
|
return map;
|
|
},
|
|
mapToArray(map) {
|
|
if (!map) {
|
|
return [];
|
|
}
|
|
if (_.isArray(map)) {
|
|
return map;
|
|
}
|
|
const array: any = [];
|
|
for (const key in map) {
|
|
const item = map[key];
|
|
item.key = key;
|
|
array.push(item);
|
|
}
|
|
return array;
|
|
}
|
|
};
|