correct hexSlice end
This commit is contained in:
parent
3c9fb3ec1a
commit
6111c17a0e
@ -42,7 +42,7 @@ SlowBuffer.prototype.hexSlice = function(start, end) {
|
|||||||
var len = this.length;
|
var len = this.length;
|
||||||
|
|
||||||
if (!start || start < 0) start = 0;
|
if (!start || start < 0) start = 0;
|
||||||
if (!end || end < 0 || end > len) end = len - 1;
|
if (!end || end < 0 || end > len) end = len;
|
||||||
|
|
||||||
var out = '';
|
var out = '';
|
||||||
for (var i = start; i < end; i ++) {
|
for (var i = start; i < end; i ++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user