source: node_modules/has-symbols/index.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 420 bytes
Line 
1'use strict';
2
3var origSymbol = typeof Symbol !== 'undefined' && Symbol;
4var hasSymbolSham = require('./shams');
5
6module.exports = function hasNativeSymbols() {
7 if (typeof origSymbol !== 'function') { return false; }
8 if (typeof Symbol !== 'function') { return false; }
9 if (typeof origSymbol('foo') !== 'symbol') { return false; }
10 if (typeof Symbol('bar') !== 'symbol') { return false; }
11
12 return hasSymbolSham();
13};
Note: See TracBrowser for help on using the repository browser.