in src/lib/store/modules/group.store.js [168:176]
getGroup(state) {
return ({groupId}) => {
if (state.groupMap[groupId]) {
return state.groupMap[groupId];
} else {
return null;
}
}
},