BE-SPAN/node_modules/es6-symbol/is-native-implemented.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07: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";