Files
xiuhu-backend-store/node_modules/es6-symbol/is-native-implemented.js
wangxiaowei 5d7b75a14e first commit
2025-12-09 13:35:21 +08:00

8 lines
215 B
JavaScript

// 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";