From 342bbf5359927592bc3d8b0b8acb45dc58179488 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 10 Dec 2013 18:58:38 -0800 Subject: [PATCH] fix buffer.toJSON method in Firefox 18+ --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) } } -- 2.34.1