5 lines
172 B
Groovy
5 lines
172 B
Groovy
def call(input, binding) {
|
|
def engine = new groovy.text.GStringTemplateEngine()
|
|
def template = engine.createTemplate(input).make(binding)
|
|
return template.toString()
|
|
} |