Create string template tag that transform values into strings
npm install string-template-format-baseCreate string template tag that transform values into strings
``javascript[${typeof value} ${value}]
import tag from 'string-template-format-base'
const myTag = tag(value => )${123}; ${'abc'}; ${{ abc: 123 }}; ${[0, 1, 2]}
console.log(myTag)`
_should print:_
```
[number 123]; [string abc]; [object [Object object]]; [array 0,1,2]