Skip to main content
Module

x/tar/deps.ts>deferred

TAR archive management in Deno :package:
Latest
function deferred
Re-export
import { deferred } from "https://deno.land/x/tar@v0.0.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);

Returns

Deferred<T>