Module async/mod

    Provide helpers with asynchronous tasks like delays, debouncing, retrying, or pooling.

    import { delay } from "@std/async/delay";

    await delay(100); // waits for 100 milliseconds

    Index