core-js
Version:
Standard library
10 lines (8 loc) • 309 B
JavaScript
;
require('../../modules/es.map');
require('../../modules/esnext.map.from');
var Map = require('../../internals/path').Map;
var mapFrom = Map.from;
module.exports = function from(source, mapFn, thisArg) {
return mapFrom.call(typeof this === 'function' ? this : Map, source, mapFn, thisArg);
};