Blame view

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