5 lines
127 B
JavaScript
5 lines
127 B
JavaScript
module.exports = {
|
|
context: { person: { name: "Larry", age: 45 } },
|
|
handlebars: "{{#person}}{{name}}{{age}}{{/person}}"
|
|
};
|