Skip to main content
Module

x/mysql/deps.ts>deferred

MySQL driver for Deno
Extremely Popular
Latest
function deferred
Re-export
import { deferred } from "https://deno.land/x/mysql@v2.12.1/deps.ts";

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);