Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/legacy/deps.ts>writeAllSync

A better way to work with processes in Deno.
Very Popular
Latest
function writeAllSync
import { writeAllSync } from "https://deno.land/x/proc@0.21.9/legacy/deps.ts";

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

Examples

Example 1

import { writeAllSync } from "https://deno.land/std@0.224.0/io/write_all.ts";

// Example writing to stdout
let contentBytes = new TextEncoder().encode("Hello World");
writeAllSync(Deno.stdout, contentBytes);

// Example writing to file
contentBytes = new TextEncoder().encode("Hello World");
const file = Deno.openSync('test.file', {write: true});
writeAllSync(file, contentBytes);
file.close();

Parameters

writer: WriterSync
data: Uint8Array