]> zoso.dev Git - buffer.git/commitdiff
apply Uint8Array speed optimization in Firefox
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 4 Dec 2013 10:11:23 +0000 (02:11 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 4 Dec 2013 10:11:23 +0000 (02:11 -0800)
In Firefox the buffer is not `instanceof Uint8Array` so let’s use
Buffer.isBuffer instead

index.js

index b5e352b3148c42656df46dab32e6aa28bc8bc5ed..7ddec77fc5ea32f20406f2a92d696d2930546a31 100644 (file)
--- a/index.js
+++ b/index.js
@@ -53,9 +53,9 @@ function Buffer (subject, encoding) {
     buf = augment(new Uint8Array(length))
   }
 
-  if (subject instanceof Uint8Array) {
+  if (Buffer.isBuffer(subject)) {
     // Speed optimization -- use set if we're copying from a Uint8Array
-    buf.set(subject, 0)
+    buf.set(subject)
   } else if (isArrayIsh(subject)) {
     // Treat array-ish objects as a byte array.
     for (var i = 0; i < length; i++) {