object-group-bye
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

object.groupby

As its name says, it is a ponyfill or polyfill of Object.groupBy ES feature.

install

You can use any package management tool you like to download it. pnpm is recommended:

$ pnpm i object-group-bye

usage

import { ObjectGroupBy } from "object-group-bye"
const inventory = [
  { name: "asparagus", type: "vegetables", quantity: 5 },
  { name: "bananas", type: "fruit", quantity: 0 },
  { name: "goat", type: "meat", quantity: 23 },
  { name: "cherries", type: "fruit", quantity: 5 },
  { name: "fish", type: "meat", quantity: 22 },
];
const result = ObjectGroupBy(inventory, ({ type }) => type);
/* Result is:
{
  vegetables: [
    { name: 'asparagus', type: 'vegetables', quantity: 5 },
  ],
  fruit: [
    { name: "bananas", type: "fruit", quantity: 0 },
    { name: "cherries", type: "fruit", quantity: 5 }
  ],
  meat: [
    { name: "goat", type: "meat", quantity: 23 },
    { name: "fish", type: "meat", quantity: 22 }
  ]
}
*/

This package also supports polyfill usage:

    // import the polyfill at the top of your code
    import "object-group-bye/polyfill"
    // now you can use it directly with `object.groupBy` static method
    const result = Object.groupBy(inventory, ({ type }) => type);
    // ...

license

MIT

Package Sidebar

Install

npm i object-group-bye

Weekly Downloads

3

Version

0.1.1

License

MIT

Unpacked Size

4.57 kB

Total Files

9

Last publish

Collaborators

  • vinsurs