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
There are a bunch of places that we're using a pattern like return Promise.resolve().then(...) which has a very slight async penalty and can make stacktraces a bit harder to read.
There are a bunch of places that we're using a pattern like
return Promise.resolve().then(...)
which has a very slight async penalty and can make stacktraces a bit harder to read.We should replace these with a
Promise.try
polyfill, like proposal-promise-try or p-try.The text was updated successfully, but these errors were encountered: