UNPKG

es-grid-template

Version:

es-grid-template

11 lines 243 B
export default function groupBy(list, iteratee) { const groups = {}; for (const item of list) { const key = iteratee(item); if (groups[key] == null) { groups[key] = []; } groups[key].push(item); } return groups; }