Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (22 loc) · 696 Bytes

README.md

File metadata and controls

36 lines (22 loc) · 696 Bytes

proposal-array-grouping

A proposal to make grouping of items in an array easier.

const array = [1, 2, 3, 4, 5];

// groupBy groups items by arbitrary key.
// In this case, the we're grouping on even/odd keys
array.groupBy(i => {
  return i % 2 === 0 ? 'even': 'odd';
});

// =>  { odd: [1, 3, 5], even: [2, 4] }

Champions

Status

Current Stage: 1

Motivation

TODO

Polyfill

Pending polyfill implementations...

Related