symbol-tostring Utility function which converts symbols into strings. Usage: const symbolToString = require('symbol-tostring');const foo = Symbol('foo'); console.log(symbolToString(foo)); // Outputs "foo"