]> zoso.dev Git - buffer.git/commitdiff
Rename the second foo into a bar
authorDamjan Košir <damjan.kosir@gmail.com>
Thu, 23 Jul 2015 04:33:28 +0000 (16:33 +1200)
committerDamjan Košir <damjan.kosir@gmail.com>
Thu, 23 Jul 2015 04:33:28 +0000 (16:33 +1200)
index.js

index 1aeef584b2dcf486e981ab16c987ccf0b4249807..81f9714956e976ea0942b0536330a683f4f8ae6e 100644 (file)
--- a/index.js
+++ b/index.js
@@ -39,14 +39,14 @@ var rootParent = {}
  * get the Object implementation, which is slower but will work correctly.
  */
 Buffer.TYPED_ARRAY_SUPPORT = (function () {
-  function Foo () {}
+  function Bar () {}
   try {
     var buf = new ArrayBuffer(0)
     var arr = new Uint8Array(buf)
     arr.foo = function () { return 42 }
-    arr.constructor = Foo
+    arr.constructor = Bar
     return arr.foo() === 42 && // typed array instances can be augmented
-        arr.constructor === Foo && // constructor can be set
+        arr.constructor === Bar && // 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) {