- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
9 lines
331 B
JavaScript
9 lines
331 B
JavaScript
import group from './_group.js';
|
|
import has from './_has.js';
|
|
|
|
// Groups the object's values by a criterion. Pass either a string attribute
|
|
// to group by, or a function that returns the criterion.
|
|
export default group(function(result, value, key) {
|
|
if (has(result, key)) result[key].push(value); else result[key] = [value];
|
|
});
|