Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213
  1. 'use strict';
  2. var origSymbol = typeof Symbol !== 'undefined' && Symbol;
  3. var hasSymbolSham = require('./shams');
  4. module.exports = function hasNativeSymbols() {
  5. if (typeof origSymbol !== 'function') { return false; }
  6. if (typeof Symbol !== 'function') { return false; }
  7. if (typeof origSymbol('foo') !== 'symbol') { return false; }
  8. if (typeof Symbol('bar') !== 'symbol') { return false; }
  9. return hasSymbolSham();
  10. };