mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 11:21:00 +00:00
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
const renderTemplate = async (template, data) => {
|
|
const { default: hbs } = await import("https://esm.sh/handlebars");
|
|
return hbs.compile(template)(data);
|
|
};
|
|
export default renderTemplate;
|
|
// Generation time: 14.818s
|
|
// Result: PASS
|