Files
air66-yourls-admin-theme/node_modules/es6-symbol/is-native-implemented.js

6 lines
166 B
JavaScript
Raw Normal View History

2019-07-24 18:16:32 +01:00
// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = typeof Symbol === 'function' && typeof Symbol() === 'symbol';