blob: 3ff53ade2b2b2f6a9b0c3b457091f19224a2262c [file] [log] [blame]
'use strict';
require('../../modules/es.weak-map');
require('../../modules/esnext.weak-map.of');
var path = require('../../internals/path');
var WeakMap = path.WeakMap;
var weakMapOf = WeakMap.of;
module.exports = function of() {
return weakMapOf.apply(typeof this === 'function' ? this : WeakMap, arguments);
};