Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raulil/symbol-tostring

Utility function that converts JavaScript symbols into strings
https://github.com/raulil/symbol-tostring

javascript symbol utility-function

Last synced: about 4 hours ago
JSON representation

Utility function that converts JavaScript symbols into strings

Awesome Lists containing this project

README

        

# symbol-tostring [![travis][travis-image]][travis-url] [![coveralls][coveralls-image]][coveralls-url] [![npm][npm-image]][npm-url]

[travis-image]: https://img.shields.io/travis/RauliL/symbol-tostring/master.svg
[travis-url]: https://travis-ci.org/RauliL/symbol-tostring
[coveralls-image]: https://coveralls.io/repos/github/RauliL/symbol-tostring/badge.svg
[coveralls-url]: https://coveralls.io/github/RauliL/symbol-tostring
[npm-image]: https://img.shields.io/npm/v/symbol-tostring.svg
[npm-url]: https://npmjs.org/package/symbol-tostring

Utility function which converts symbols into strings.

Usage:
```JavaScript
const symbolToString = require('symbol-tostring');
const foo = Symbol('foo');

console.log(symbolToString(foo)); // Outputs "foo"
```