source: imaps-frontend/node_modules/core-js/internals/symbol-constructor-detection.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 2 weeks ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 957 bytes
Line 
1'use strict';
2/* eslint-disable es/no-symbol -- required for testing */
3var V8_VERSION = require('../internals/environment-v8-version');
4var fails = require('../internals/fails');
5var globalThis = require('../internals/global-this');
6
7var $String = globalThis.String;
8
9// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
10module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
11 var symbol = Symbol('symbol detection');
12 // Chrome 38 Symbol has incorrect toString conversion
13 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
14 // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
15 // of course, fail.
16 return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
17 // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
18 !Symbol.sham && V8_VERSION && V8_VERSION < 41;
19});
Note: See TracBrowser for help on using the repository browser.