a-weak-set.js 184 B

12345678
  1. 'use strict';
  2. var has = require('../internals/weak-set-helpers').has;
  3. // Perform ? RequireInternalSlot(M, [[WeakSetData]])
  4. module.exports = function (it) {
  5. has(it);
  6. return it;
  7. };