From deb13b7fc68a085025d33a6a121525e708d6a018 Mon Sep 17 00:00:00 2001 From: Justin Staubach Date: Wed, 4 Sep 2019 20:59:50 -0400 Subject: [PATCH] Change let to var for consistency. --- bin/mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mustache b/bin/mustache index 442f2d0..583ed1e 100755 --- a/bin/mustache +++ b/bin/mustache @@ -53,7 +53,7 @@ function run (/*args*/) { } function readView (cb) { - let view; + var view; if (isJson(viewArg)) { view = require(path.join(process.cwd(),viewArg)); cb(view);