mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
7 lines
285 B
JavaScript
7 lines
285 B
JavaScript
async function renderTemplate(template, data) {
|
|
window.Handlebars || await import('https://cdn.jsdelivr.net/npm/handlebars@4.7.7/dist/handlebars.min.js');
|
|
return window.Handlebars.compile(template)(data);
|
|
}
|
|
export default renderTemplate;
|
|
// Generation time: 42.558s
|
|
// Result: FAIL
|