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