Ohm-Management - Projektarbeit B-ME
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.

isSymbol.js 682B

1234567891011121314151617181920212223242526272829
  1. var baseGetTag = require('./_baseGetTag'),
  2. isObjectLike = require('./isObjectLike');
  3. /** `Object#toString` result references. */
  4. var symbolTag = '[object Symbol]';
  5. /**
  6. * Checks if `value` is classified as a `Symbol` primitive or object.
  7. *
  8. * @static
  9. * @memberOf _
  10. * @since 4.0.0
  11. * @category Lang
  12. * @param {*} value The value to check.
  13. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
  14. * @example
  15. *
  16. * _.isSymbol(Symbol.iterator);
  17. * // => true
  18. *
  19. * _.isSymbol('abc');
  20. * // => false
  21. */
  22. function isSymbol(value) {
  23. return typeof value == 'symbol' ||
  24. (isObjectLike(value) && baseGetTag(value) == symbolTag);
  25. }
  26. module.exports = isSymbol;