source: frontend/node_modules/underscore/modules/countBy.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: 340 bytes
Line 
1import group from './_group.js';
2import has from './_has.js';
3
4// Counts instances of an object that group by a certain criterion. Pass
5// either a string attribute to count by, or a function that returns the
6// criterion.
7export default group(function(result, value, key) {
8 if (has(result, key)) result[key]++; else result[key] = 1;
9});
Note: See TracBrowser for help on using the repository browser.