Blame view

node_modules/es6-symbol/is-native-implemented.js 166 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
  // Exports true if environment provides native `Symbol` implementation
  
  'use strict';
  
  module.exports = typeof Symbol === 'function' && typeof Symbol() === 'symbol';