Skip to content

Is this value a Symbol stored in the global cross-realm Symbol registry?

License

Notifications You must be signed in to change notification settings

inspect-js/is-registered-symbol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-registered-symbol Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this value a Symbol stored in the global cross-realm Symbol registry?

Example

var isRegisteredSymbol = require('is-registered-symbol');

var assert = require('assert');

assert(!isRegisteredSymbol(null));
assert(!isRegisteredSymbol(undefined));
assert(!isRegisteredSymbol('foo'));
assert(!isRegisteredSymbol(Symbol.iterator));
assert(!isRegisteredSymbol(Symbol()));
assert(isRegisteredSymbol(Symbol.for('yogurt')));

Tests

Simply clone the repo, npm install, and run npm test