'use strict';varGetIntrinsic=require('../GetIntrinsic');var$String=GetIntrinsic('%String%');var$TypeError=GetIntrinsic('%TypeError%');// https://www.ecma-international.org/ecma-262/6.0/#sec-tostringmodule.exports=functionToString(argument){if(typeofargument==='symbol'){thrownew$TypeError('Cannot convert a Symbol value to a string');}return$String(argument);};