1b5d56520523bad9178bd42c373140735cfd66d492441f5d3c7046d2e4b3ec279733e2345247fb478e7edac429a21ae109c3e2e26aa1fff7432509f6e0cc6a 403 B

12345678910111213
  1. 'use strict';
  2. var uncurryThis = require('../internals/function-uncurry-this');
  3. // eslint-disable-next-line es/no-weak-set -- safe
  4. var WeakSetPrototype = WeakSet.prototype;
  5. module.exports = {
  6. // eslint-disable-next-line es/no-weak-set -- safe
  7. WeakSet: WeakSet,
  8. add: uncurryThis(WeakSetPrototype.add),
  9. has: uncurryThis(WeakSetPrototype.has),
  10. remove: uncurryThis(WeakSetPrototype['delete'])
  11. };