InspectionCleaning/node_modules/core-js/internals/symbol-registry-detection.js

6 lines
201 B
JavaScript
Raw Normal View History

2025-04-07 09:53:58 +08:00
'use strict';
var NATIVE_SYMBOL = require('../internals/symbol-constructor-detection');
/* eslint-disable es/no-symbol -- safe */
module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;