Opal-Estate-Pro/node_modules/es6-symbol/is-native-implemented.js

8 lines
214 B
JavaScript
Raw Normal View History

2019-09-13 06:27:52 +02:00
// Exports true if environment provides native `Symbol` implementation
"use strict";
var Symbol = require("es5-ext/global").Symbol;
module.exports = typeof Symbol === "function" && typeof Symbol() === "symbol";