Browse Source

Combined slice calls for performance improvement.

patch-2
Braydon Fuller 9 years ago
parent
commit
e74a65fd0a
  1. 5
      lib/encoding/bufferreader.js

5
lib/encoding/bufferreader.js

@ -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;
};

Loading…
Cancel
Save