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
TypeError
The source object is not a ReadableStreamDefaultController, or the stream is not readable for some other reason.
const{ ReadableStream }=require('stream/web')letcconsts=newReadableStream({start(controller){c=controller}})c.close()try{c.error()}catch(err){console.error(err)// This should log an error}