import { asyncUtils } from "https://deno.land/x/dtils@2.6.1/deps.ts";
const { deferred } = asyncUtils;
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);