from.js 427 B

12345678910111213
  1. 'use strict';
  2. require('../../modules/es.map');
  3. require('../../modules/es.string.iterator');
  4. require('../../modules/esnext.map.from');
  5. require('../../modules/web.dom-collections.iterator');
  6. var path = require('../../internals/path');
  7. var Map = path.Map;
  8. var mapFrom = Map.from;
  9. module.exports = function from(source, mapFn, thisArg) {
  10. return mapFrom.call(typeof this === 'function' ? this : Map, source, mapFn, thisArg);
  11. };