source: frontend/node_modules/underscore/modules/groupBy.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 331 bytes
Line 
1import group from './_group.js';
2import has from './_has.js';
3
4// Groups the object's values by a criterion. Pass either a string attribute
5// to group by, or a function that returns the criterion.
6export default group(function(result, value, key) {
7 if (has(result, key)) result[key].push(value); else result[key] = [value];
8});
Note: See TracBrowser for help on using the repository browser.