shams.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. 'use strict';
  2. /* eslint complexity: [2, 17], max-statements: [2, 33] */
  3. module.exports = function hasSymbols() {
  4. if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }
  5. if (typeof Symbol.iterator === 'symbol') { return true; }
  6. var obj = {};
  7. var sym = Symbol('test');
  8. var symObj = Object(sym);
  9. if (typeof sym === 'string') { return false; }
  10. if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }
  11. if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }
  12. // temp disabled per https://github.com/ljharb/object.assign/issues/17
  13. // if (sym instanceof Symbol) { return false; }
  14. // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
  15. // if (!(symObj instanceof Symbol)) { return false; }
  16. // if (typeof Symbol.prototype.toString !== 'function') { return false; }
  17. // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
  18. var symVal = 42;
  19. obj[sym] = symVal;
  20. for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax
  21. if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
  22. if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
  23. var syms = Object.getOwnPropertySymbols(obj);
  24. if (syms.length !== 1 || syms[0] !== sym) { return false; }
  25. if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
  26. if (typeof Object.getOwnPropertyDescriptor === 'function') {
  27. var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
  28. if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
  29. }
  30. return true;
  31. };