Viewing File: /home/ubuntu/voice-assistant-frontend/node_modules/core-js/internals/to-string.js

'use strict';
var classof = require('../internals/classof');

var $String = String;

module.exports = function (argument) {
  if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
  return $String(argument);
};
Back to Directory File Manager