mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
7 lines
234 B
JavaScript
7 lines
234 B
JavaScript
const renderTemplate = async (template, data) => {
|
|
const { default: hb } = await import('https://esm.sh/handlebars');
|
|
return hb.compile(template)(data);
|
|
};
|
|
export default renderTemplate;
|
|
// Generation time: 14.517s
|
|
// Result: PASS
|