]> zoso.dev Git - buffer.git/commitdiff
style
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 11 Feb 2015 23:01:33 +0000 (15:01 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 11 Feb 2015 23:01:33 +0000 (15:01 -0800)
index.js

index 21c8a09a5aee2ca0003bc46c4b00c75f4a0cd1f0..a2c9324531770504a96141bbd6b194150556f7f7 100644 (file)
--- a/index.js
+++ b/index.js
@@ -72,9 +72,9 @@ function Buffer (subject, encoding, noZero) {
 
   // Find the length
   var length
-  if (type === 'number')
+  if (type === 'number') {
     length = +subject
-  else if (type === 'string') {
+  else if (type === 'string') {
     length = Buffer.byteLength(subject, encoding)
   } else if (type === 'object' && subject !== null) { // assume object is array-like
     if (subject.type === 'Buffer' && isArray(subject.data))