You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
var template_hbsfy = require('template.hbs');
// tmpl_string is the exact same string contained in template.hbs, read using $.ajax()
var template = Handlebars.compile(tmpl_string);
// obj is some object
var string1 = template_hbsfy(obj);
var string2 = template(obj);
string1 and string2 are different.
string1 contains a BOM character appended to the beginning ot the string. This is interpreted as an empty text element.
The text was updated successfully, but these errors were encountered: