aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es6-symbol/is-native-implemented.js
blob: 8676d0e8df30facc53b122684dfcf41a757a3bf3 (plain)
1
2
3
4
5
// Exports true if environment provides native `Symbol` implementation

'use strict';

module.exports = typeof Symbol === 'function' && typeof Symbol() === 'symbol';