mstch/test/data/lambda/section_functions_in_partials.js
2015-04-12 17:12:52 +02:00

8 lines
116 B
JavaScript

({
bold: function(){
return function(text, render) {
return "<b>" + render(text) + "</b>";
}
}
})