Skip to main content
Module

std/async/mod.ts

The Deno Standard Library
Go to Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * Provide help with asynchronous tasks like delays, debouncing, deferring, or * pooling. * * ```ts * import { delay } from "https://deno.land/std@$STD_VERSION/async/delay.ts"; * * await delay(100); // waits for 100 milliseconds * ``` * * @module */
export * from "./abortable.ts";export * from "./deadline.ts";export * from "./debounce.ts";export * from "./delay.ts";export * from "./mux_async_iterator.ts";export * from "./pool.ts";export * from "./tee.ts";export * from "./retry.ts";