NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/es6-symbol/is-native-implemented.js

8 lines
215 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
// Exports true if environment provides native `Symbol` implementation
"use strict";
var Symbol = require("ext/global-this").Symbol;
module.exports = typeof Symbol === "function" && typeof Symbol() === "symbol";