missing semicolon
This commit is contained in:
parent
9cb31ebb6a
commit
54e705f7e8
@ -129,7 +129,7 @@ BufferReader.prototype.readVarintBN = function() {
|
|||||||
BufferReader.prototype.reverse = function() {
|
BufferReader.prototype.reverse = function() {
|
||||||
var buf = new Buffer(this.buf.length);
|
var buf = new Buffer(this.buf.length);
|
||||||
for (var i = 0; i < buf.length; i++)
|
for (var i = 0; i < buf.length; i++)
|
||||||
buf[i] = this.buf[this.buf.length - 1 - i]
|
buf[i] = this.buf[this.buf.length - 1 - i];
|
||||||
this.buf = buf;
|
this.buf = buf;
|
||||||
return this;
|
return this;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user