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
Opening a separate issue from #49 for the sake of people googling why their process is just dying on them.
It seems a bit too easy to accidentally cause the event loop to die:
const{ Repeater }=require('@repeaterjs/repeater')consttest=newRepeater((push,stop)=>{push(1)// stop()});(async()=>{forawait(constvalueoftest){console.log(value)}// event loop dies before this point unless you uncomment stop() aboveconsole.log('done')})()
The text was updated successfully, but these errors were encountered:
Opening a separate issue from #49 for the sake of people googling why their process is just dying on them.
It seems a bit too easy to accidentally cause the event loop to die:
The text was updated successfully, but these errors were encountered: