native-symbol.js 243 Bytes
Newer Older
Lalita's avatar
Lalita committed
1 2 3 4 5 6 7
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());
});