mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 19:21:01 +00:00
7 lines
213 B
JavaScript
7 lines
213 B
JavaScript
const renderTemplate = async (t, d) => {
|
|
const { default: h } = await import('https://esm.sh/handlebars');
|
|
return h.compile(t)(d);
|
|
};
|
|
export default renderTemplate;
|
|
// Generation time: 110.510s
|
|
// Result: PASS
|