dc56597ea797f45b412ec294320533730360dea54d34d58d2889629a096c7d4f8b4e9158f393eee523cda3ff18a2ac5dc60f5b4d6094e4cff5bc41eaee5614 304 B

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