Deno.Buffer.prototype.readFrom - Deno documentation
method Deno.Buffer.prototype.readFrom
Buffer.prototype.readFrom(r: Reader): Promise<number>

Reads data from r until EOF (null) and appends it to the buffer, growing the buffer as needed. It resolves to the number of bytes read. If the buffer becomes too large, .readFrom() will reject with an error.

Based on Go Lang's Buffer.ReadFrom.

Parameters

Return Type

Promise<number>