From: Feross Aboukhadijeh Date: Wed, 11 Dec 2013 02:58:38 +0000 (-0800) Subject: fix buffer.toJSON method in Firefox 18+ X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=342bbf5359927592bc3d8b0b8acb45dc58179488;p=buffer.git fix buffer.toJSON method in Firefox 18+ --- diff --git a/index.js b/index.js index 987a554..54574ab 100644 --- a/index.js +++ b/index.js @@ -152,8 +152,8 @@ Buffer.concat = function (list, totalLength) { return buffer } -// INSTANCE METHODS -// ================ +// BUFFER INSTANCE METHODS +// ======================= function _hexWrite (buf, string, offset, length) { offset = Number(offset) || 0 @@ -292,7 +292,7 @@ function BufferToString (encoding, start, end) { function BufferToJSON () { return { type: 'Buffer', - data: Array.prototype.slice.call(this, 0) + data: Array.prototype.slice.call(this._arr || this, 0) } }