@zibuthe7j11/corporis-commodi-possimus
v1.0.0
Published
[![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][5]][6] [![dev dependency status][7]][8] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url]
Downloads
3
Maintainers
Keywords
Readme
@zibuthe7j11/corporis-commodi-possimus
Gets the description of a Symbol. Handles Symbol()
vs Symbol('')
properly when possible.
Example
var getSymbolDescription = require('@zibuthe7j11/corporis-commodi-possimus');
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');
Tests
Simply clone the repo, npm install
, and run npm test