mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
7 lines
268 B
JavaScript
7 lines
268 B
JavaScript
export const renderTemplate=async(template,data)=>{
|
|
const {default:Handlebars}=await import('https://cdn.jsdelivr.net/npm/handlebars@latest/+esm')
|
|
return Handlebars.compile(template)(data)
|
|
}
|
|
export default renderTemplate;
|
|
// Generation time: 4.362s
|
|
// Result: PASS
|