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
This commit is contained in:
parent
aff56dbcb6
commit
a1da3065c4
@ -13,7 +13,7 @@ var REVERSE_OPS = (function () {
|
|||||||
return result
|
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) {
|
function toASM (chunks) {
|
||||||
if (types.Buffer(chunks)) {
|
if (types.Buffer(chunks)) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user