From 78b61ccbcdbd8e65750b19006a019e2f13fe353f Mon Sep 17 00:00:00 2001 From: Peter deHaan Date: Wed, 4 Mar 2015 13:54:34 -0800 Subject: [PATCH] Convert `const` to `var` Per https://github.com/mozilla/readability/issues/18#issuecomment-77229549 --- Readability.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readability.js b/Readability.js index 8441f60..d1e4cbe 100644 --- a/Readability.js +++ b/Readability.js @@ -20,7 +20,7 @@ */ var Readability = function(uri, doc) { - const ENABLE_LOGGING = false; + var ENABLE_LOGGING = false; this._uri = uri; this._doc = doc;