// package
is-symbol
type: "module"
// preferences
// replacements (1)
snippet::is-symbol
Simple or drop-in replacementThis package is no longer necessary. You can use `typeof` to check if a value is a symbol.
// example
const isSymbol = (value) =>
typeof value === 'symbol';