]> zoso.dev Git - buffer.git/commitdiff
style
authorFeross Aboukhadijeh <feross@feross.org>
Tue, 7 Jul 2015 19:49:51 +0000 (12:49 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Tue, 7 Jul 2015 19:49:51 +0000 (12:49 -0700)
index.js

index 91ea5e92982bd746ba1d2862d130ceb6330e7486..1aeef584b2dcf486e981ab16c987ccf0b4249807 100644 (file)
--- a/index.js
+++ b/index.js
@@ -45,8 +45,8 @@ Buffer.TYPED_ARRAY_SUPPORT = (function () {
     var arr = new Uint8Array(buf)
     arr.foo = function () { return 42 }
     arr.constructor = Foo
-    return arr.constructor === Foo && // constructor can be set
-        arr.foo() === 42 && // typed array instances can be augmented
+    return arr.foo() === 42 && // typed array instances can be augmented
+        arr.constructor === Foo && // constructor can be set
         typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`
         new Uint8Array(1).subarray(1, 1).byteLength === 0 // ie10 has broken `subarray`
   } catch (e) {