blob: aaa0346866f727343e1a29083042f902f60906d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module.exports = {
helpers: {
foo: function() {
return '';
}
},
context: {
bar: true
},
handlebars: '{{foo person "person" 1 true foo=bar foo="person" foo=1 foo=true}}'
};
|