1.0.1 • Published 8 months ago

es2024.object v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

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
    }
  ]
} */