api-client/functions/templating.js

8 lines
248 B
JavaScript
Raw Normal View History

2019-10-30 01:28:44 +00:00
export default function parseTemplateString(string, variables) {
2019-11-12 04:52:50 +00:00
if (!variables || !string) {
2020-02-24 18:44:50 +00:00
return string
2019-11-12 04:52:50 +00:00
}
2020-02-24 18:44:50 +00:00
const searchTerm = /<<([^>]*)>>/g // "<<myVariable>>"
return string.replace(searchTerm, (match, p1) => variables[p1] || "")
2019-10-30 01:28:44 +00:00
}