This release is 11 versions behind 1.0.10 — the latest version of @std/async. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Utilities for asynchronous operations, like delays, debouncing, or pooling
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




JSR Score
100%
Published
8 months ago (0.224.2)
// 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 no-assert * import { delay } from "@std/async/delay"; * * 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";