Javascript String tmpl(d)

Description

Javascript String tmpl(d)


String.prototype.tmpl = function(d) {
  return this.replace(/\$\$([^$]+)\$\$/g,
    Function('d', 'return function(_,s){with(d) return eval(s)}')(d||{}))
};



PreviousNext

Related