diff --git a/mustache.js b/mustache.js index 53ec2723f..5e6e8a0df 100644 --- a/mustache.js +++ b/mustache.js @@ -551,9 +551,7 @@ }; Writer.prototype.unescapedValue = function unescapedValue (token, context) { - var value = context.lookup(token[1]); - if (value != null) - return value; + return context.lookup(token[1]); }; Writer.prototype.escapedValue = function escapedValue (token, context) {