A simple function of the string template
npm install qtemplate javascript
let tem = require('qtemplate')
let str = tem("This is a ${character} string template ")
let txt = str({character:'simple'});
console.log(txt);
`
$3
$3
` javascript
let tem = require('qtemplate')
let txt = tem("This is a ${character} string template ",{character:'simple'})
console.log(txt);
``