source: trip-planner-front/node_modules/has-symbols/index.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years 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.