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

x/dtils/deps.ts>asyncUtils.deferred

The best unofficial library of utilities for Deno applications
Go to Latest
function asyncUtils.deferred
Re-export
import { asyncUtils } from "https://deno.land/x/dtils@2.5.0/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

import { deferred } from "https://deno.land/std@0.224.0/async/deferred.ts";

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