Combined slice calls for performance improvement.

This commit is contained in:
Braydon Fuller 2015-06-26 19:21:15 -04:00
parent 8e6b0147b9
commit e74a65fd0a
1 changed files with 2 additions and 3 deletions

View File

@ -91,9 +91,8 @@ BufferReader.prototype.readUInt64BEBN = function() {
};
BufferReader.prototype.readUInt64LEBN = function() {
var buf = this.buf.slice(this.pos, this.pos + 8);
var array = Array.prototype.slice.call(buf, 0);
var bn = new BN(array, 10, 'le');
var data = Array.prototype.slice.call(this.buf, this.pos, this.pos + 8);
var bn = new BN(data, 10, 'le');
this.pos = this.pos + 8;
return bn;
};