EASYAIuniappNewUI/node_modules/core-js/internals/a-weak-set.js
2025-02-08 18:50:38 +08:00

9 lines
184 B
JavaScript

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