gradio_app / app /frontend /node_modules /es6-symbol /is-native-implemented.js
mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
215 Bytes
// 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";