Last change
on this file since 6fe77af 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 |
|
---|
3 | var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
---|
4 | var hasSymbolSham = require('./shams');
|
---|
5 |
|
---|
6 | module.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.