hexo/node_modules/core-js/fn/weak-map/from.js

9 lines
338 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
'use strict';
require('../../modules/es6.weak-map');
require('../../modules/es7.weak-map.from');
var $WeakMap = require('../../modules/_core').WeakMap;
var $from = $WeakMap.from;
module.exports = function from(source, mapFn, thisArg) {
return $from.call(typeof this === 'function' ? this : $WeakMap, source, mapFn, thisArg);
};