Skip to main content
Very Popular
Go to Latest
function deferred
import { deferred } from "https://deno.land/x/redis@v0.26.0/vendor/https/deno.land/std/async/deferred.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 "./deferred.ts";

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