]> zoso.dev Git - buffer.git/commitdiff
match iojs Buffer.concat signature
authorFeross Aboukhadijeh <feross@feross.org>
Mon, 20 Apr 2015 20:51:00 +0000 (13:51 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Mon, 20 Apr 2015 20:51:00 +0000 (13:51 -0700)
index.js

index bbb73436317234127121c28e7961ccd535c3cb4a..ba03fc280d083d17e412d4c48d1973b999d752fb 100644 (file)
--- a/index.js
+++ b/index.js
@@ -178,7 +178,7 @@ Buffer.isEncoding = function isEncoding (encoding) {
   }
 }
 
-Buffer.concat = function concat (list, totalLength) {
+Buffer.concat = function concat (list, length) {
   if (!isArray(list)) throw new TypeError('list argument must be an Array of Buffers.')
 
   if (list.length === 0) {
@@ -188,14 +188,14 @@ Buffer.concat = function concat (list, totalLength) {
   }
 
   var i
-  if (totalLength === undefined) {
-    totalLength = 0
+  if (length === undefined) {
+    length = 0
     for (i = 0; i < list.length; i++) {
-      totalLength += list[i].length
+      length += list[i].length
     }
   }
 
-  var buf = new Buffer(totalLength)
+  var buf = new Buffer(length)
   var pos = 0
   for (i = 0; i < list.length; i++) {
     var item = list[i]