a-weak-map.js 170 B

1234567
  1. var has = require('../internals/weak-map-helpers').has;
  2. // Perform ? RequireInternalSlot(M, [[WeakMapData]])
  3. module.exports = function (it) {
  4. has(it);
  5. return it;
  6. };