Files
ola5doc/sys/node_modules/es6-symbol/is-native-implemented.js
T

9 lines
214 B
JavaScript

// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = (function () {
if (typeof Symbol !== 'function') return false;
return (typeof Symbol() === 'symbol');
}());