diff options
Diffstat (limited to 'bench/templates/object-mustache.js')
-rw-r--r-- | bench/templates/object-mustache.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/templates/object-mustache.js b/bench/templates/object-mustache.js index 52dbc26..41774b7 100644 --- a/bench/templates/object-mustache.js +++ b/bench/templates/object-mustache.js @@ -1,4 +1,4 @@ module.exports = { - context: { person: { name: "Larry", age: 45 } }, - handlebars: "{{#person}}{{name}}{{age}}{{/person}}" + context: { person: { name: 'Larry', age: 45 } }, + handlebars: '{{#person}}{{name}}{{age}}{{/person}}' }; |