Skip to main content
Module

x/proc/deps.ts>deferred

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
function deferred
Re-export
import { deferred } from "https://deno.land/x/proc@0.19.9/deps.ts";

Creates a Promise with the reject and resolve functions placed as methods on the promise object itself. It allows you to do:

    import { deferred } from "https://deno.land/std@0.224.0/async/deferred.ts";

    const p = deferred<number>();
    // ...
    p.resolve(42);