Skip to main content
Module

x/better_iterators/tests/helpers.ts>delay

Chainable iterators (sync and async) for TypeScript, with support for opt-in, bounded parallelism
Go to Latest
function delay
import { delay } from "https://deno.land/x/better_iterators@v1.2.1/tests/helpers.ts";

Resolve a Promise after a given amount of milliseconds.

Examples

Example 1

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

// ...
const delayedPromise = delay(100);
const result = await delayedPromise;
// ...

To allow the process to continue to run as long as the timer exists. Requires --unstable flag.

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

// ...
await delay(100, { persistent: false });
// ...

Parameters

ms: number
optional
options: DelayOptions = [UNSUPPORTED]

Returns

Promise<void>