import { mongo } from "https://deno.land/x/hex@0.5.15/src/data/deps.ts";
const { deferred } = mongo.Bson;
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);