mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 19:21:01 +00:00
7 lines
212 B
JavaScript
7 lines
212 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: 42.272s
|
|
// Result: PASS
|