Hi there,
I have found that latest version of minified handlebars.min.js surprisingly returns an empty string every time on each compile operation.
For example:
var tpl = Handlebars.compile('{{foo}}');
var output = tpl({foo: 'bar'});
console.log(output === ''); // true