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
if you remove the const result = await asyncFunc() the request will not pass to the backend and the function will no longer wait for the async() to finish. instead of that always use await() when using async().
I would like to be able to set response after a specific time passed as my code below, but it's not possible.
But if I remove
const result = await asyncFunc()
part, I can set response anything I want inside ofres.write();
.The text was updated successfully, but these errors were encountered: