* Returns a new `Buffer` which is the result of concatenating all the `Buffer` instances in the `list` together. * * If the list has no items, or if the `totalLength` is 0, then a new zero-length `Buffer` is returned. * * If `totalLength` is not provided, it is calculated from th
(list: readonly Uint8Array[], totalLength?: number)
| 146 | * @param totalLength Total length of the `Buffer` instances in `list` when concatenated. |
| 147 | */ |
| 148 | concat(list: readonly Uint8Array[], totalLength?: number): Buffer; |
| 149 | /** |
| 150 | * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`. |
| 151 | */ |
no outgoing calls