mstch/test/data/lambda/section_functions_in_partials.js

8 lines
116 B
JavaScript
Raw Normal View History

2015-04-12 23:12:52 +08:00
({
bold: function(){
return function(text, render) {
return "<b>" + render(text) + "</b>";
}
}
})