1
0
Fork 0
arangodb/js/node/node_modules/es6-symbol/is-native-implemented.js

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');
}());