Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
function deferred
import { deferred } from "https://deno.land/x/denogres@v4.0.1/vendor/deno.land/std@0.160.0/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 "https://deno.land/std@0.224.0/async/deferred.ts";

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