13 lines
208 B
JavaScript
13 lines
208 B
JavaScript
module.exports = {
|
|
helpers: {
|
|
foo: function(options) {
|
|
return '';
|
|
}
|
|
},
|
|
context: {
|
|
bar: true
|
|
},
|
|
|
|
handlebars: '{{foo person "person" 1 true foo=bar foo="person" foo=1 foo=true}}'
|
|
};
|