convert a template string to a normal string. example:
const name = 'world';const str = templateToString`hello ${name}!`;// str = 'hello world!'@param template@param expressions@ Copy
const name = 'world';const str = templateToString`hello ${name}!`;// str = 'hello world!'@param template@param expressions@
convert a template string to a normal string. example: