es2024.object

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i es2024.object

Weekly Downloads

3

Version

1.0.1

License

MIT

Unpacked Size

2.09 kB

Total Files

3

Last publish

Collaborators

  • waterlemons2k