Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 3x 3x 1x 3x 1x 1x 1x 1x | // src/utils/timeout.ts
/**
* Wraps a promise with a timeout.
* @param promise The promise to wrap.
* @param ms The timeout duration in milliseconds.
* @returns A promise that resolves or rejects with the original promise, or rejects with a timeout error.
*/
export function withTimeout<T>(promise: Promise<T>, ms: number): Promise<T> {
return new Promise((resolve, reject) => {
const timer = setTimeout(() => {
reject(new Error(`Operation timed out after ${ms / 1000} seconds`));
}, ms);
promise
.then((value) => {
clearTimeout(timer);
resolve(value);
})
.catch((reason) => {
clearTimeout(timer);
reject(reason);
});
});
}
|