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

x/proc/mod3.ts>Enumerable#writeTo

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
method Enumerable.prototype.writeTo
Re-export
import { Enumerable } from "https://deno.land/x/proc@0.20.21/mod3.ts";

Write all data to the writer.

Note that this call returns immediately, although it continues to run until the source iterable data is exhausted.

Parameters

writer: Writable<T>

The writer.

Returns

Promise<void>