1'use strict'; 2require('../../modules/es6.map'); 3require('../../modules/es7.map.from'); 4var $Map = require('../../modules/_core').Map; 5var $from = $Map.from; 6module.exports = function from(source, mapFn, thisArg) { 7 return $from.call(typeof this === 'function' ? this : $Map, source, mapFn, thisArg); 8}; 9