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