blob: cac9090d3e492ba00a5c30a1aed742b29a733dae [file] [log] [blame]
'use strict';
require('../../modules/es.weak-map');
require('../../modules/esnext.weak-map.from');
var path = require('../../internals/path');
var WeakMap = path.WeakMap;
var weakMapFrom = WeakMap.from;
module.exports = function from(source, mapFn, thisArg) {
return weakMapFrom.call(typeof this === 'function' ? this : WeakMap, source, mapFn, thisArg);
};