An error thrown when a timeout occurs
try { let result = await timeout(fetch("https://example.com"), { ms: 100 });} catch (error) { if (error instanceof TimeoutError) { // Handle timeout }} Copy
try { let result = await timeout(fetch("https://example.com"), { ms: 100 });} catch (error) { if (error instanceof TimeoutError) { // Handle timeout }}
Optional
Static
Optional override for formatting stack traces
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Create .stack property on a target object
An error thrown when a timeout occurs
Example