import { deferred } from "https://deno.land/x/capi@v0.1.1-beta.1/deps/std/async.ts";
Creates a Promise with the reject
and resolve
functions placed as methods
on the promise object itself.
Examples
Example 1
Example 1
import { deferred } from "https://deno.land/std@0.224.0/async/deferred.ts";
const p = deferred<number>();
// ...
p.resolve(42);