Skip to content

Commit bc64114

Browse files
authored
buffer: document concat zero-fill
PR-URL: #55562 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Ulises Gascón <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
1 parent a50f3d5 commit bc64114

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/api/buffer.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,8 @@ in `list` by adding their lengths.
10421042

10431043
If `totalLength` is provided, it is coerced to an unsigned integer. If the
10441044
combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is
1045-
truncated to `totalLength`.
1045+
truncated to `totalLength`. If the combined length of the `Buffer`s in `list` is
1046+
less than `totalLength`, the remaining space is filled with zeros.
10461047

10471048
```mjs
10481049
import { Buffer } from 'node:buffer';

0 commit comments

Comments
 (0)