0896d00c2e
The `eco`-templates (Embedded CoffeeScript templates) had their last update over 10 years ago, so we can remove this dependency from our benchmark.
14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
module.exports = {
|
|
helpers: {
|
|
echo: function(value) {
|
|
return 'foo ' + value;
|
|
},
|
|
header: function() {
|
|
return 'Colors';
|
|
}
|
|
},
|
|
handlebars: '{{echo (header)}}'
|
|
};
|
|
|
|
module.exports.context = module.exports.helpers;
|