Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/cordeno/deps.ts>DenoAsync.deferred

🦕 A Discord API wrapper for developing discord bots using the Deno runtime.
Latest
function DenoAsync.deferred
Re-export
import { DenoAsync } from "https://deno.land/x/cordeno@v0.3.5/deps.ts";
const { deferred } = DenoAsync;

Creates a Promise with the reject and resolve functions placed as methods on the promise object itself. It allows you to do:

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