from.js 461 B

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