examTeamApp/node_modules/core-js/internals/weak-map-basic-detection.js

8 lines
235 B
JavaScript
Raw Permalink Normal View History

2024-09-27 17:35:10 +08:00
'use strict';
var globalThis = require('../internals/global-this');
var isCallable = require('../internals/is-callable');
var WeakMap = globalThis.WeakMap;
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));