]> zoso.dev Git - buffer.git/commitdiff
Fix: In node 0.8 + 0.10, Uint8Array.prototype.set is undefined
authorFeross Aboukhadijeh <feross@feross.org>
Mon, 20 Jan 2014 08:05:48 +0000 (00:05 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Mon, 20 Jan 2014 08:05:48 +0000 (00:05 -0800)
index.js

index dc3a534fc95a0cf0791f082fd32208cc2a208a28..afb970a27a89ce82303fe5ee1cb461512a3ebff4 100644 (file)
--- a/index.js
+++ b/index.js
@@ -84,7 +84,7 @@ function Buffer (subject, encoding, noZero) {
   if (Buffer._useTypedArrays && typeof Uint8Array === 'function' &&
       subject instanceof Uint8Array) {
     // Speed optimization -- use set if we're copying from a Uint8Array
-    Uint8Array.prototype.set.call(buf, subject)
+    buf._set(subject)
   } else if (isArrayish(subject)) {
     // Treat array-ish objects as a byte array
     for (i = 0; i < length; i++) {
@@ -857,8 +857,13 @@ var BP = Buffer.prototype
 function augment (arr) {
   arr._isBuffer = true
 
-  arr.get = BP.get // deprecated
-  arr.set = BP.set // deprecated
+  // save reference to original Uint8Array get/set methods before overwriting
+  arr._get = arr.get
+  arr._set = arr.set
+
+  // deprecated, will be removed in node 0.13+
+  arr.get = BP.get
+  arr.set = BP.set
 
   arr.write = BP.write
   arr.toString = BP.toString