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