icyicons/src/helper.js

6 lines
130 B
JavaScript

export function make(itemList, scope) {
let obj = {};
itemList.forEach((item) => obj = {[item]: scope, ...obj});
return obj;
}