mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 00:27:55 +00:00
5 lines
203 B
JavaScript
5 lines
203 B
JavaScript
const renderTemplate = async (tmpl, data) => {
|
|
const { default: H } = await import('https://cdn.jsdelivr.net/npm/handlebars@latest/+esm')
|
|
return H.compile(tmpl)(data)
|
|
}
|
|
export default renderTemplate; |