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