Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/dtils/deps.ts>asyncUtils.delay

The best unofficial library of utilities for Deno applications
Go to Latest
function asyncUtils.delay
Re-export
import { asyncUtils } from "https://deno.land/x/dtils@2.5.0/deps.ts";
const { delay } = asyncUtils;

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>