]> zoso.dev Git - buffer.git/commitdiff
fix buffer.toJSON method in Firefox 18+
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 11 Dec 2013 02:58:38 +0000 (18:58 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 11 Dec 2013 02:58:38 +0000 (18:58 -0800)
index.js

index 987a554a98a98bb2eda4994362c9aff25ce5a754..54574abd961db1d4925fd449508822da382e694a 100644 (file)
--- 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)
   }
 }