mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 14:47:46 -04:00
8 lines
131 B
JavaScript
8 lines
131 B
JavaScript
import swig from 'swig'
|
|
|
|
export default function (template, context) {
|
|
return swig.render(template, {
|
|
locals: context
|
|
})
|
|
}
|