summaryrefslogtreecommitdiffstats
path: root/bench/templates/object.js
blob: 084c070ad05c75c06c96f7639b83e189f3383f7a (plain)
1
2
3
4
5
6
7
module.exports = {
  context: { person: { name: 'Larry', age: 45 } },
  handlebars: '{{#with person}}{{name}}{{age}}{{/with}}',
  dust: '{#person}{name}{age}{/person}',
  eco: '<%= @person.name %><%= @person.age %>',
  mustache: '{{#person}}{{name}}{{age}}{{/person}}'
};