Files
handlebars.js/tests/bench/templates/subexpression.js
T
Jakob Linskeseder 0896d00c2e Remove outdated eco package from bench
The `eco`-templates (Embedded CoffeeScript templates)
had their last update over 10 years ago, so we can
remove this dependency from our benchmark.
2022-01-02 00:15:47 +01:00

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;