blob: 430e2cef3264bd0e850d987d2821156cf37c0ad1 [file] [log] [blame]
'use strict';
require('../../modules/es.weak-set');
require('../../modules/esnext.weak-set.of');
var path = require('../../internals/path');
var WeakSet = path.WeakSet;
var weakSetOf = WeakSet.of;
module.exports = function of() {
return weakSetOf.apply(typeof this === 'function' ? this : WeakSet, arguments);
};