You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const{ signal }=newAbortController();constkAbortAlgos=Object.getOwnPropertySymbols(signal).find(s=>String(s)=='Symbol([[abortAlgos]])');console.log('abortAlgos size before',signal[kAbortAlgos]?.size);for(leti=0;i<100;i++){constresp=awaitfetch('data:,',{ signal });awaitresp.arrayBuffer();}console.log('abortAlgos size after',signal[kAbortAlgos].size);
stdout:
abortAlgos size before undefined
abortAlgos size after 100
The text was updated successfully, but these errors were encountered:
The fetch spec related to this has been updated by whatwg/fetch#1646 in the meanwhile, so the proper fix for this will likely follow after #18944 is done.
deno v1.27.0
stdout:
The text was updated successfully, but these errors were encountered: