Files
wechatpay-enterprise-web/node_modules/core-js/internals/a-weak-map.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

9 lines
184 B
JavaScript

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