You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hasSymbols.js 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. 'use strict';
  2. var keys = require('object-keys');
  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. var symVal = 42;
  17. obj[sym] = symVal;
  18. for (sym in obj) { return false; }
  19. if (keys(obj).length !== 0) { return false; }
  20. if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
  21. if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
  22. var syms = Object.getOwnPropertySymbols(obj);
  23. if (syms.length !== 1 || syms[0] !== sym) { return false; }
  24. if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
  25. if (typeof Object.getOwnPropertyDescriptor === 'function') {
  26. var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
  27. if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
  28. }
  29. return true;
  30. };