Skip to main content
Module

x/retry/mod.ts

Re-execute a function until it does not throw an error or execute a function with a timeout.
Very Popular
Go to Latest
File
// Copyright since 2020, FranckLdx. All rights reserved. MIT license.
export { retry, retryAsync } from "./retry.ts";export type { RetryOptions } from "./retry.ts";
export { TimeoutError, waitUntilAsync } from "./wait.ts";