This commit is contained in:
kpdecker
2013-08-24 12:06:25 -05:00
parent 94e5ab8593
commit eb1cda6fdc
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -1,3 +1,5 @@
/*global Handlebars: true */
var handlebars = require("./handlebars/base"),
// Each of these augment the Handlebars object. No need to setup here.
+2
View File
@@ -50,6 +50,8 @@ Handlebars.Utils = {
},
escapeExpression: function(string) {
/*jshint eqnull: true */
// don't escape SafeStrings, since they're already safe
if (string instanceof Handlebars.SafeString) {
return string.toString();