figmatic-print-builder/utils/dynamicBinder.js

5 lines
139 B
JavaScript
Raw Normal View History

2026-06-16 12:58:18 +05:30
export function bindData(text, data) {
return text.replace(/{{(.*?)}}/g, (_, key) => {
return data[key.trim()] ?? "";
});
}