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