Deno.writeAllSync

deprecated

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

@deprecated

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

function writeAllSync(w: WriterSync, arr: Uint8Array): void;
§
writeAllSync(w: WriterSync, arr: Uint8Array): void
[src]

§Parameters

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

§Return Type

§
void
[src]