UNPKG

801 BJavaScriptView Raw
1'use strict';
2var $ = require('../internals/export');
3var bind = require('../internals/function-bind-context');
4var aMap = require('../internals/a-map');
5var MapHelpers = require('../internals/map-helpers');
6var iterate = require('../internals/map-iterate');
7
8var Map = MapHelpers.Map;
9var set = MapHelpers.set;
10
11// `Map.prototype.mapKeys` method
12// https://github.com/tc39/proposal-collection-methods
13$({ target: 'Map', proto: true, real: true, forced: true }, {
14 mapKeys: function mapKeys(callbackfn /* , thisArg */) {
15 var map = aMap(this);
16 var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
17 var newMap = new Map();
18 iterate(map, function (value, key) {
19 set(newMap, boundFunction(value, key, map), value);
20 });
21 return newMap;
22 }
23});