Skip to main content
Module

std/async/mod.ts>delay

Deno standard library
Go to Latest
function delay
Re-export
import { delay } from "https://deno.land/std@0.221.0/async/mod.ts";

Resolve a Promise after a given amount of milliseconds.

Examples

Example 1

import { delay } from "https://deno.land/std@0.221.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.

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

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

Parameters

ms: number
optional
options: DelayOptions = [UNSUPPORTED]

Returns

Promise<void>