Files
handlebars.js/bench/templates/object.js
T
2013-08-25 13:25:27 -05:00

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}}"
};