mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
export async function renderTemplate(t, d = {}) {
|
|
let { default: H } = await import("https://esm.sh/handlebars@4.7.8")
|
|
return H.compile(String(t))({ ...d })
|
|
}
|
|
export default renderTemplate;
|
|
// Generation time: 2.200s
|
|
// Result: PASS
|