UNPKG

mustache-jest

Version:

Jest Transformer to compile mustache templates

13 lines (10 loc) 250 B
const template = require('./testTemplate.html').default; /** * * @param {HTMLDivElement} div * @param {object} data */ module.exports = function renderToDiv(div, data) { const htmlCompiled = template(data); div.innerHTML = htmlCompiled; };