]> zoso.dev Git - buffer.git/commitdiff
standard
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 29 Aug 2018 02:41:26 +0000 (19:41 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 29 Aug 2018 02:41:26 +0000 (19:41 -0700)
index.js

index 06b36e7e90a5ccfc3fcb7fc5551c046aefb0f820..c1719db5df43704fcc2d84fb244d1f450adb8953 100644 (file)
--- a/index.js
+++ b/index.js
@@ -46,7 +46,7 @@ function typedArraySupport () {
   // Can typed array instances can be augmented?
   try {
     var arr = new Uint8Array(1)
-    arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }}
+    arr.__proto__ = { __proto__: Uint8Array.prototype, foo: function () { return 42 } }
     return arr.foo() === 42
   } catch (e) {
     return false