MCPcopy Index your code
hub / github.com/deployd/deployd / isSymbol

Function isSymbol

test-app/public/sinon.js:22783–22786  ·  view source on GitHub ↗

* Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false

(value)

Source from the content-addressed store, hash-verified

22781 * // => false
22782 */
22783 function isSymbol(value) {
22784 return typeof value == 'symbol' ||
22785 (isObjectLike(value) && baseGetTag(value) == symbolTag);
22786 }
22787
22788 /**
22789 * Checks if `value` is classified as a typed array.

Callers 10

baseExtremumFunction · 0.70
baseSortedIndexFunction · 0.70
baseSortedIndexByFunction · 0.70
baseToNumberFunction · 0.70
baseToStringFunction · 0.70
compareAscendingFunction · 0.70
isKeyFunction · 0.70
toKeyFunction · 0.70
toNumberFunction · 0.70
toPathFunction · 0.70

Calls 2

isObjectLikeFunction · 0.85
baseGetTagFunction · 0.85

Tested by

no test coverage detected