source: frontend/node_modules/underscore/cjs/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: 367 bytes
Line 
1var _group = require('./_group.js');
2var _has = require('./_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.
6var groupBy = _group(function(result, value, key) {
7 if (_has(result, key)) result[key].push(value); else result[key] = [value];
8});
9
10module.exports = groupBy;
Note: See TracBrowser for help on using the repository browser.