Packs an array of buffers into a single buffer.
A buffer containing the packed buffers.
const bufferA = Buffer.from('Hello');const bufferB = Buffer.from('World');const packedBuffers = packBuffers([bufferA, bufferB]);console.log(packedBuffers.toString('hex')); // 010548656c6c6f05576f726c64 Copy
const bufferA = Buffer.from('Hello');const bufferB = Buffer.from('World');const packedBuffers = packBuffers([bufferA, bufferB]);console.log(packedBuffers.toString('hex')); // 010548656c6c6f05576f726c64
Packs an array of buffers into a single buffer.