Darius Zivertas profile photo
Darius Zivertas
December 4, 2024

Interpolate string template js

iterpolation.js
JavaScript

    const interpolate = function(template, params) {
      const names = Object.keys(params);
      const vals = Object.values(params);
      return new Function(...names, `return \`${template}\`;`)(...vals);
    }

View this gist on GitHub

HomeBlogProjectsSnippetsSearchContact