root 3bf41bf355 update | il y a 1 an | |
---|---|---|
.. | ||
.github | il y a 1 an | |
test | il y a 1 an | |
.eslintignore | il y a 1 an | |
.eslintrc | il y a 1 an | |
.nycrc | il y a 1 an | |
CHANGELOG.md | il y a 1 an | |
LICENSE | il y a 1 an | |
README.md | il y a 1 an | |
getInferredName.js | il y a 1 an | |
index.js | il y a 1 an | |
package.json | il y a 1 an |
Gets the description of a Symbol. Handles Symbol()
vs Symbol('')
properly when possible.
var getSymbolDescription = require('get-symbol-description');
var assert = require('assert');
assert(getSymbolDescription(Symbol()) === undefined);
assert(getSymbolDescription(Symbol('')) === ''); // or `undefined`, if in an engine that lacks name inference from concise method
assert(getSymbolDescription(Symbol('foo')) === 'foo');
assert(getSymbolDescription(Symbol.iterator) === 'Symbol.iterator');
Simply clone the repo, npm install
, and run npm test