Bit #49
Use AbortSignal.timeout()
dispatches abort event after timeout duration has passed.
fetch(url, { // Abort this request automatically after 2 seconds. signal: AbortSignal.timeout(2000),})
Use AbortSignal.timeout()
dispatches abort event after timeout duration has passed.
fetch(url, { // Abort this request automatically after 2 seconds. signal: AbortSignal.timeout(2000),})