Implementation of the Check Digit timeout algorithm for promises
@checkdigit/timeoutCopyright (c) 2023–2025 Check Digit, LLC
The @checkdigit/timeout module implements the recommended Check Digit timeout algorithm for promises.
``shell`
npm install @checkdigit/timeout
`ts
import timeout from '@checkdigit/timeout';
// await a promise, with the default 60 second timeout
await timeout(new Promise(....));
// await a promise, but with a 10 second timeout
await timeout(new Promise(....), { timeout: 10000 });
``
MIT