Skip to main content
This release is 11 versions behind 1.0.10 — the latest version of @std/async. Jump to latest

@std/async@0.224.2
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
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with 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";