mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
import {createSelector} from 'reselect';
|
|
|
|
const getTermGroups = ({termGroups}) => termGroups.termGroups;
|
|
const getRootGroups = createSelector(getTermGroups, termGroups =>
|
|
Object.keys(termGroups)
|
|
.map(uid => termGroups[uid])
|
|
.filter(({parentUid}) => !parentUid)
|
|
);
|
|
|
|
export default getRootGroups;
|