mstch/test/data/lambda/nested_higher_order_sections.js

9 lines
150 B
JavaScript
Raw Normal View History

2015-04-10 02:41:27 +08:00
({
bold: function () {
return function (text, render) {
return '<b>' + render(text) + '</b>';
};
},
person: { name: 'Jonas' }
});