The Wayback Machine - https://web.archive.org/web/20201220221520/https://github.com/lodash/lodash/blob/master/isSymbol.js
Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (21 sloc) 555 Bytes
import getTag from './.internal/getTag.js'
/**
* Checks if `value` is classified as a `Symbol` primitive or object.
*
* @since 4.0.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
* @example
*
* isSymbol(Symbol.iterator)
* // => true
*
* isSymbol('abc')
* // => false
*/
function isSymbol(value) {
const type = typeof value
return type == 'symbol' || (type === 'object' && value != null && getTag(value) == '[object Symbol]')
}
export default isSymbol
You can’t perform that action at this time.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.