Skip to content

Commit a58cd55

Browse files
committed
add some links
1 parent 4329104 commit a58cd55

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/core-js/modules/es.map.group-by.js

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ var get = MapHelpers.get;
1414
var set = MapHelpers.set;
1515
var push = uncurryThis([].push);
1616

17+
// https://bugs.webkit.org/show_bug.cgi?id=271524
1718
var DOES_NOT_WORK_WITH_PRIMITIVES = IS_PURE || fails(function () {
1819
return Map.groupBy('ab', function (it) {
1920
return it;

packages/core-js/modules/es.object.group-by.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ var nativeGroupBy = Object.groupBy;
1313
var create = getBuiltIn('Object', 'create');
1414
var push = uncurryThis([].push);
1515

16+
// https://bugs.webkit.org/show_bug.cgi?id=271524
1617
var DOES_NOT_WORK_WITH_PRIMITIVES = !nativeGroupBy || fails(function () {
1718
return nativeGroupBy('ab', function (it) {
1819
return it;

0 commit comments

Comments
 (0)