Currently:
let template = Handlebars.compile('{{#if foo}}{{foo}}{{/if}}', {strict: true});
template({}); // Throws `Error: "foo" not defined in [object Object]`
I definitely expected this to not be the case (you should be able to explicitly protect against missing values, IMO)!
Currently:
I definitely expected this to not be the case (you should be able to explicitly protect against missing values, IMO)!