mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 11:21:00 +00:00
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
async function renderTemplate(tmpl, data) {
|
|
const { compile } = await import('https://cdn.skypack.dev/handlebars');
|
|
return compile(tmpl)(data);
|
|
}
|
|
export default renderTemplate;
|
|
// Generation time: 1.302s
|
|
// Result: PASS
|