source:
imaps-frontend/node_modules/core-js/internals/weak-map-basic-detection.js
Last change on this file was 79a0317, checked in by , 2 weeks ago | |
---|---|
|
|
File size: 235 bytes |
Rev | Line | |
---|---|---|
[79a0317] | 1 | 'use strict'; |
2 | var globalThis = require('../internals/global-this'); | |
3 | var isCallable = require('../internals/is-callable'); | |
4 | ||
5 | var WeakMap = globalThis.WeakMap; | |
6 | ||
7 | module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap)); |
Note:
See TracBrowser
for help on using the repository browser.