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
importMutexfrom"@jagi/mutex";constmutext=newMutex();constasyncActionResult=awaitmutex.run(async()=>{// Running asynchronous action.returnawaitasyncAction();});mutex.run(async()=>{// This action will wait for the first one to finish.awaitanotherAsyncAction();});