source: node_modules/core-js-pure/modules/esnext.array.group-to-map.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 439 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var addToUnscopables = require('../internals/add-to-unscopables');
4var $groupToMap = require('../internals/array-group-to-map');
5var IS_PURE = require('../internals/is-pure');
6
7// `Array.prototype.groupToMap` method
8// https://github.com/tc39/proposal-array-grouping
9$({ target: 'Array', proto: true, forced: IS_PURE }, {
10 groupToMap: $groupToMap
11});
12
13addToUnscopables('groupToMap');
Note: See TracBrowser for help on using the repository browser.