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.
Very Popular
Go to Latest
function deferred
Re-export
import { deferred } from "https://deno.land/x/proc@0.19.10/deps.ts";

Creates a Promise with the reject and resolve functions placed as methods on the promise object itself.

Examples

Example 1

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

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