@@ -5,19 +5,19 @@ A proposal to make grouping of items in an array easier.
5
5
``` js
6
6
const array = [1 , 2 , 3 , 4 , 5 ];
7
7
8
- // groupBy groups items by arbitrary key.
8
+ // group groups items by arbitrary key.
9
9
// In this case, we're grouping by even/odd keys
10
- array .groupBy ((num , index , array ) => {
10
+ array .group ((num , index , array ) => {
11
11
return num % 2 === 0 ? ' even' : ' odd' ;
12
12
});
13
13
14
14
// => { odd: [1, 3, 5], even: [2, 4] }
15
15
16
- // groupByToMap returns items in a Map, and is useful for grouping using
16
+ // groupToMap returns items in a Map, and is useful for grouping using
17
17
// an object key.
18
18
const odd = { odd: true };
19
19
const even = { even: true };
20
- array .groupByToMap ((num , index , array ) => {
20
+ array .groupToMap ((num , index , array ) => {
21
21
return num % 2 === 0 ? even: odd;
22
22
});
23
23
@@ -40,12 +40,27 @@ thought of map-group-reduce). The ability to combine like data into
40
40
groups allows developers to compute higher order datasets, like the
41
41
average age of a cohort or daily LCP values for a webpage.
42
42
43
- Two methods are offered, ` groupBy ` and ` groupByToMap ` . The first returns a
43
+ Two methods are offered, ` group ` and ` groupToMap ` . The first returns a
44
44
null-prototype object, which allows ergonomic destructuring and prevents
45
45
accidental collisions with global Object properties. The second returns
46
46
a regular ` Map ` instance, which allows grouping on complex key types
47
47
(imagine a compound key or [ tuple] ).
48
48
49
+ ## Why ` group ` and not ` groupBy ` ?
50
+
51
+ We've [ found] [ sugar-bug ] a web compatibility issue with the name
52
+ ` groupBy ` . The [ Sugar] [ sugar ] library until v1.4.0 conditionally
53
+ monkey-patches ` Array.prototype ` with an incompatible method. By
54
+ providing a native ` groupBy ` , these versions of Sugar would fail to
55
+ install their implementation, and any sites that depend on their
56
+ behavior would break. We've found some 660 origins that use these
57
+ versions of the Sugar library.
58
+
59
+ In a similar situation, we renamed the ` Array.prototype.flatten `
60
+ proposal to ` flat ` . Note that we did not rename it to ` flattened `
61
+ (though it was considered). We've taken the same approach, renaming
62
+ ` groupBy ` to ` group ` .
63
+
49
64
## Polyfill
50
65
51
66
- A polyfill is available in the [ core-js] library. You can find it in the [ ECMAScript proposals section] [ core-js-section ] .
@@ -60,3 +75,5 @@ a regular `Map` instance, which allows grouping on complex key types
60
75
[ core-js-section ] : https://github.com/zloirock/core-js#array-grouping
61
76
[ lodash ] : https://lodash.com/docs/4.17.15#groupBy
62
77
[ lodash-npm ] : https://www.npmjs.com/package/lodash.groupby
78
+ [ sugar ] : https://sugarjs.com/
79
+ [ sugar-bug ] : https://github.com/tc39/proposal-array-grouping/issues/37
0 commit comments