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

8 lines
222 B
JavaScript

'use strict';
var global = require('../internals/global');
var isCallable = require('../internals/is-callable');
var WeakMap = global.WeakMap;
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));