0896d00c2e
The `eco`-templates (Embedded CoffeeScript templates) had their last update over 10 years ago, so we can remove this dependency from our benchmark.
7 lines
224 B
JavaScript
7 lines
224 B
JavaScript
module.exports = {
|
|
context: { person: { name: 'Larry', age: 45 } },
|
|
handlebars: '{{#with person}}{{name}}{{age}}{{/with}}',
|
|
dust: '{#person}{name}{age}{/person}',
|
|
mustache: '{{#person}}{{name}}{{age}}{{/person}}'
|
|
};
|