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
It's sad when people do writer.abort() with no arguments, because then the various promises (e.g., on any writer.write() calls, or writer.closed) reject with undefined.
Could we instead automatically generate an "AbortError"DOMException? That would match the behavior of AbortController.
The text was updated successfully, but these errors were encountered:
It's sad when people do
writer.abort()
with no arguments, because then the various promises (e.g., on anywriter.write()
calls, orwriter.closed
) reject withundefined
.Could we instead automatically generate an
"AbortError"
DOMException
? That would match the behavior ofAbortController
.The text was updated successfully, but these errors were encountered: