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

x/proc/legacy/deps.ts>toWritableStream

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

Create a WritableStream from a Writer.

Examples

Example 1

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

const file = await Deno.open("./file.txt", { create: true, write: true });
await ReadableStream.from("Hello World")
  .pipeThrough(new TextEncoderStream())
  .pipeTo(toWritableStream(file));

Parameters

writer: Writer
optional
unnamed 1: toWritableStreamOptions = [UNSUPPORTED]