deno / latest / ~ / deno.writeallsync.html

Deno.writeAllSync

deprecated

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

@deprecated

Use writeAllSync from std/streams/conversion.ts instead. Deno.writeAllSync will be removed in the future.


    
function writeAllSync(w: WriterSync, arr: Uint8Array): void;
writeAllSync(w: WriterSync, arr: Uint8Array): void

Parameters

arr: Uint8Array

Return Type

void