es2024.object
v1.0.1
Published
Polyfills for the new methods of `Object` in ES2024.
Downloads
111
Maintainers
Readme
es2024.object
Polyfills for the new methods of Object
in ES2024.
Installation
npm i es2024.object
Usage
import 'es2024.object';
const items = [
{ type: 'number', value: 0 },
{ type: 'number', value: 1 }
];
Object.groupBy(items, ({ type }) => type);
/* {
number: [
{
type: 'number',
value: 0
},
{
type: 'number',
value: 1
}
]
} */