correct hexSlice end

pull/5370/head
Ryan Dahl 2011-03-15 11:42:23 -07:00
parent 3c9fb3ec1a
commit 6111c17a0e
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ SlowBuffer.prototype.hexSlice = function(start, end) {
var len = this.length;
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 = '';
for (var i = start; i < end; i ++) {