Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fast path for Buffer.concat with Uint8Array.
Previous implementation would copy the Uint8Array into a new Buffer object, and then concatenate it. It is faster to use the Uint8Array.set (which Buffer.copy uses internally) anyways.
- Loading branch information