]> zoso.dev Git - buffer.git/commitdiff
fix comment
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 10 Apr 2014 06:21:05 +0000 (23:21 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 10 Apr 2014 06:21:05 +0000 (23:21 -0700)
index.js

index ed94f66c4c6339661de2e9496a65dda3a99da877..c5b9923700726ea7d2d162fc605e36ff3f0c4c54 100644 (file)
--- a/index.js
+++ b/index.js
@@ -21,12 +21,11 @@ Buffer.poolSize = 8192
  *   === false   Use Object implementation (compatible down to IE6)
  */
 Buffer._useTypedArrays = (function () {
-  // Detect if browser supports Typed Arrays. Supported browsers are IE 10+,
-  // Firefox 4+, Chrome 7+, Safari 5.1+, Opera 11.6+, iOS 4.2+.
-  // Does the browser support adding properties to `Uint8Array` instances? If
-  // not, then that's the same as no `Uint8Array` support. We need to be able to
-  // add all the node Buffer API methods.
-  // Bug in Firefox 4-29, now fixed: https://bugzilla.mozilla.org/show_bug.cgi?id=695438
+  // Detect if browser supports Typed Arrays. Supported browsers are IE 10+, Firefox 4+,
+  // Chrome 7+, Safari 5.1+, Opera 11.6+, iOS 4.2+. If the browser does not support adding
+  // properties to `Uint8Array` instances, then that's the same as no `Uint8Array` support
+  // because we need to be able to add all the node Buffer API methods. This is an issue
+  // in Firefox 4-29. Now fixed: https://bugzilla.mozilla.org/show_bug.cgi?id=695438
   try {
     var buf = new ArrayBuffer(0)
     var arr = new Uint8Array(buf)