Files
insomnia/app/lib/render.js
Gregory Schier 4c93317f45 A bunch
2016-04-09 19:58:48 -07:00

8 lines
131 B
JavaScript

import swig from 'swig'
export default function (template, context) {
return swig.render(template, {
locals: context
})
}