diff options
author | kpdecker <kpdecker@gmail.com> | 2013-08-24 12:06:25 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2013-08-24 12:06:25 -0500 |
commit | eb1cda6fdc975b704d2eda211419f552931417ba (patch) | |
tree | 58a989a74668c72f8c2ae891293275e03bc57e62 /lib/handlebars/utils.js | |
parent | 94e5ab8593b878e45833abd50c3242953f6d1901 (diff) | |
download | handlebars.js-eb1cda6fdc975b704d2eda211419f552931417ba.zip handlebars.js-eb1cda6fdc975b704d2eda211419f552931417ba.tar.gz handlebars.js-eb1cda6fdc975b704d2eda211419f552931417ba.tar.bz2 |
jshint
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(); |