summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/utils.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2013-08-17 12:16:48 -0500
committerkpdecker <kpdecker@gmail.com>2013-08-17 12:16:48 -0500
commit6492fe8c2300d39d71d11cc6837cf2e63d238cd1 (patch)
treedcf87fd21b89d1ac01f5a62a9d199de005260455 /lib/handlebars/utils.js
parent3d77d172ecba90a09e4e66518b425ac17b35fe51 (diff)
downloadhandlebars.js-6492fe8c2300d39d71d11cc6837cf2e63d238cd1.zip
handlebars.js-6492fe8c2300d39d71d11cc6837cf2e63d238cd1.tar.gz
handlebars.js-6492fe8c2300d39d71d11cc6837cf2e63d238cd1.tar.bz2
Add jshint to grunt exec
Diffstat (limited to 'lib/handlebars/utils.js')
-rw-r--r--lib/handlebars/utils.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js
index e104dcf..9a4ff77 100644
--- a/lib/handlebars/utils.js
+++ b/lib/handlebars/utils.js
@@ -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();