]> zoso.dev Git - buffer.git/commitdiff
Add buf.toArrayBuffer on Firefox (fix #17)
authorFeross Aboukhadijeh <feross@feross.org>
Mon, 20 Jan 2014 08:15:17 +0000 (00:15 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Mon, 20 Jan 2014 08:15:17 +0000 (00:15 -0800)
index.js

index afb970a27a89ce82303fe5ee1cb461512a3ebff4..8159a3b1d7c069ef47c1e5e55ce9ccf266838275 100644 (file)
--- a/index.js
+++ b/index.js
@@ -834,11 +834,21 @@ Buffer.prototype.inspect = function () {
 
 /**
  * Creates a new `ArrayBuffer` with the *copied* memory of the buffer instance.
- * Added in Node 0.12. Not added to Buffer.prototype since it should only
- * be available in browsers that support ArrayBuffer.
+ * Added in Node 0.12. Only available in browsers that support ArrayBuffer.
  */
-function BufferToArrayBuffer () {
-  return (new Buffer(this)).buffer
+Buffer.prototype.toArrayBuffer = function () {
+  if (typeof Uint8Array === 'function') {
+    if (Buffer._useTypedArrays) {
+      return (new Buffer(this)).buffer
+    } else {
+      var buf = new Uint8Array(this.length)
+      for (var i = 0, len = buf.length; i < len; i += 1)
+        buf[i] = this[i]
+      return buf.buffer
+    }
+  } else {
+    throw new Error('Buffer.toArrayBuffer not supported in this browser')
+  }
 }
 
 // HELPER FUNCTIONS
@@ -901,7 +911,7 @@ function augment (arr) {
   arr.writeDoubleBE = BP.writeDoubleBE
   arr.fill = BP.fill
   arr.inspect = BP.inspect
-  arr.toArrayBuffer = BufferToArrayBuffer
+  arr.toArrayBuffer = BP.toArrayBuffer
 
   return arr
 }