Deno.writeAll

deprecated

Write all the content of the array buffer (arr) to the writer (w).

@deprecated

Use WritableStream, ReadableStream.from and ReadableStream.pipeTo instead. Deno.writeAll will be removed in the future.

function writeAll(w: Writer, arr: Uint8Array): Promise<void>;
§
writeAll(w: Writer, arr: Uint8Array): Promise<void>
[src]

§Parameters

§
w: Writer
[src]
§
arr: Uint8Array
[src]

§Return Type

§
Promise<void>
[src]