Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (13 sloc) 660 Bytes
'use strict';
var CreateDataPropertyOrThrow = require('es-abstract/2022/CreateDataPropertyOrThrow');
var OrdinaryObjectCreate = require('es-abstract/2022/OrdinaryObjectCreate');
var forEach = require('es-abstract/helpers/forEach');
var GroupBy = require('./aos/GroupBy'); // TODO: replace with es-abstract 2024 implementation
module.exports = function groupBy(items, callbackfn) {
var groups = GroupBy(items, callbackfn, 'property'); // step 1
var obj = OrdinaryObjectCreate(null); // step 2
forEach(groups, function (g) { // step 3
CreateDataPropertyOrThrow(obj, g['[[Key]]'], g['[[Elements]]']); // steps 3.a - 3.b
});
return obj; // step 4
};