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

6 lines
201 B
JavaScript
Raw Normal View History

2024-08-24 20:48:14 +02: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;