VUE_GabenParadise/node_modules/core-js/internals/native-symbol.js

8 lines
243 B
JavaScript
Raw Normal View History

2020-08-10 12:35:19 +00:00
var fails = require('../internals/fails');
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
// Chrome 38 Symbol has incorrect toString conversion
// eslint-disable-next-line no-undef
return !String(Symbol());
});