Files
lynchmark/tests/4_transpiler/outputs/google_gemini-3-pro-preview TEMP_0.35.js
2025-11-27 02:15:29 +00:00

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;