From a1da3065c4b0cf75743507a3d70fb8c6a7b537d4 Mon Sep 17 00:00:00 2001 From: Alex Seville Date: Wed, 18 Nov 2015 22:04:21 -0800 Subject: [PATCH] Remove `const` and replace with `var` To keep the project consistenly ES5. Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const --- src/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script.js b/src/script.js index 2004fa1..3239e37 100644 --- a/src/script.js +++ b/src/script.js @@ -13,7 +13,7 @@ var REVERSE_OPS = (function () { return result })() -const OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1 +var OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1 function toASM (chunks) { if (types.Buffer(chunks)) {