icyicons/src/helper.js

6 lines
130 B
JavaScript
Raw Permalink Normal View History

2021-12-15 18:12:23 +00:00
export function make(itemList, scope) {
let obj = {};
itemList.forEach((item) => obj = {[item]: scope, ...obj});
return obj;
}