diff options
author | kpdecker <kpdecker@gmail.com> | 2013-08-17 12:16:48 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2013-08-17 12:16:48 -0500 |
commit | 6492fe8c2300d39d71d11cc6837cf2e63d238cd1 (patch) | |
tree | dcf87fd21b89d1ac01f5a62a9d199de005260455 /lib/handlebars/utils.js | |
parent | 3d77d172ecba90a09e4e66518b425ac17b35fe51 (diff) | |
download | handlebars.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.js | 2 |
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(); |