|
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 | |
|---|
| 1 | import group from './_group.js';
|
|---|
| 2 | import 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.
|
|---|
| 7 | export 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.