Skip to content

Commit 885c7a3

Browse files
committed
revert comment lines
1 parent a7fd75d commit 885c7a3

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

lib/buffer.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -633,11 +633,7 @@ Buffer.concat = function concat(list, length) {
633633
pos += buf.length;
634634
}
635635

636-
// Note: `length` is always equal to `buffer.length` at this point
637636
if (pos < length) {
638-
// Zero-fill the remaining bytes if the specified `length` was more than
639-
// the actual total length, i.e. if we have some remaining allocated bytes
640-
// there were not initialized.
641637
TypedArrayPrototypeFill(buffer, 0, pos, length);
642638
}
643639
return buffer;

0 commit comments

Comments
 (0)