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
247 B
JavaScript
7 lines
247 B
JavaScript
module.exports = {
|
|
context: { name: 'Mick', count: 30 },
|
|
handlebars: 'Hello {{name}}! You have {{count}} new messages.',
|
|
dust: 'Hello {name}! You have {count} new messages.',
|
|
mustache: 'Hello {{name}}! You have {{count}} new messages.'
|
|
};
|