Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

16 lignes
402 B

  1. 'use strict';
  2. var GetIntrinsic = require('../GetIntrinsic');
  3. var $String = GetIntrinsic('%String%');
  4. var $TypeError = GetIntrinsic('%TypeError%');
  5. // https://www.ecma-international.org/ecma-262/6.0/#sec-tostring
  6. module.exports = function ToString(argument) {
  7. if (typeof argument === 'symbol') {
  8. throw new $TypeError('Cannot convert a Symbol value to a string');
  9. }
  10. return $String(argument);
  11. };