import { deadline } from "https://deno.land/std@0.220.0/async/mod.ts";
Create a promise which will be rejected with DeadlineError
when
a given delay is exceeded.
Note: Prefer to use AbortSignal.timeout
instead for the APIs
that accept AbortSignal
.
Examples
Example 1
Example 1
import { deadline } from "https://deno.land/std@0.220.0/async/deadline.ts";
import { delay } from "https://deno.land/std@0.220.0/async/delay.ts";
const delayedPromise = delay(1000);
// Below throws `DeadlineError` after 10 ms
const result = await deadline(delayedPromise, 10);