5 lines
139 B
JavaScript
5 lines
139 B
JavaScript
|
|
export function bindData(text, data) {
|
||
|
|
return text.replace(/{{(.*?)}}/g, (_, key) => {
|
||
|
|
return data[key.trim()] ?? "";
|
||
|
|
});
|
||
|
|
}
|