6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
function isSymbol(value) {
|
|
return typeof value === 'symbol';
|
|
}
|
|
|
|
export { isSymbol };
|