root 3bf41bf355 update | hace 1 año | |
---|---|---|
.. | ||
.github | hace 1 año | |
test | hace 1 año | |
.eslintignore | hace 1 año | |
.eslintrc | hace 1 año | |
.nycrc | hace 1 año | |
CHANGELOG.md | hace 1 año | |
LICENSE | hace 1 año | |
README.md | hace 1 año | |
getInferredName.js | hace 1 año | |
index.js | hace 1 año | |
package.json | hace 1 año |
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