4 lines
79 B
JavaScript
4 lines
79 B
JavaScript
|
|
export default function isSymbol(value) {
|
||
|
|
return typeof value === 'symbol';
|
||
|
|
}
|