]> zoso.dev Git - buffer.git/commitdiff
fix weird whitespace bug
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 10 Apr 2014 03:58:10 +0000 (20:58 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 10 Apr 2014 03:58:10 +0000 (20:58 -0700)
if anyone knows an easy way to prevent this from happening (it’s
option+space on OS X) please let me know!

index.js

index 15e8ad52e4f7004245edb72605e180ea430707c4..01a95948f412b06202327e235002fb46bd806313 100644 (file)
--- a/index.js
+++ b/index.js
@@ -90,7 +90,7 @@ function Buffer (subject, encoding, noZero) {
   }
 
   var i
-  if (Buffer._useTypedArrays && typeof subject.byteLength === 'number') {
+  if (Buffer._useTypedArrays && typeof subject.byteLength === 'number') {
     // Speed optimization -- use set if we're copying from a typed array
     buf._set(subject)
   } else if (isArrayish(subject)) {