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