to-string.js 208 B

123456
  1. var isSymbol = require('../internals/is-symbol');
  2. module.exports = function (argument) {
  3. if (isSymbol(argument)) throw TypeError('Cannot convert a Symbol value to a string');
  4. return String(argument);
  5. };