Skip to content

Instantly share code, notes, and snippets.

@jherr
Created January 8, 2021 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jherr/ba93c905b5f2e30cd4c8db4f3f9f747e to your computer and use it in GitHub Desktop.
Save jherr/ba93c905b5f2e30cd4c8db4f3f9f747e to your computer and use it in GitHub Desktop.
const inject = (str, obj) => str.replace(/\${(.*?)}/g, (_, g) => obj[g]);
console.log(
inject("Hello ${name}, Bye ${name2}", { name: "Jack", name2: "Dave" })
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment