mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 08:37:56 +00:00
6 lines
275 B
JavaScript
6 lines
275 B
JavaScript
const renderTemplate = async (template, data) => {
|
|
const { default: Handlebars } = await import('https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.min.js')
|
|
const compiled = Handlebars.compile(template)
|
|
return compiled(data)
|
|
}
|
|
export default renderTemplate; |