String template literal tag that converts any value that has .toString() method to strings
npm install string-template-format-tostringString template literal tag that converts any value that has .toString() method to strings
``javascriptstring: ${'abc'}; number: ${123}; function: ${Function};
import str from 'string-template-format-tostring'
console.log(str)`
_should print:_
```
string: abc; number: 123; function: function Function() { [native code] };