buffer: allow toString to accept Infinity for end

This commit is contained in:
Brian White 2014-03-09 16:46:54 -04:00 committed by Timothy J Fontaine
parent 31ce34887f
commit 68bfa91af7
2 changed files with 8 additions and 1 deletions

View File

@ -208,7 +208,7 @@ Buffer.prototype.toString = function(encoding, start, end) {
var loweredCase = false;
start = start >>> 0;
end = util.isUndefined(end) ? this.length : end >>> 0;
end = util.isUndefined(end) || end === Infinity ? this.length : end >>> 0;
if (!encoding) encoding = 'utf8';
if (start < 0) start = 0;

View File

@ -49,3 +49,10 @@ expected = '<Buffer 31 32>';
assert.strictEqual(util.inspect(b), expected);
assert.strictEqual(util.inspect(s), expected);
buffer.INSPECT_MAX_BYTES = Infinity;
assert.doesNotThrow(function() {
assert.strictEqual(util.inspect(b), expected);
assert.strictEqual(util.inspect(s), expected);
});