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
always is similar to finally in a try..catch..finally block. It attaches an onCompleted callback that is executed when the Promise is resolved or rejected.
NOTE: The specified callback does not affect the resulting Promise's outcome; any return value is ignored and any Error is rethrown.
The text was updated successfully, but these errors were encountered:
Implement
always()
and add to README.md.always
is similar tofinally
in atry..catch..finally
block. It attaches anonCompleted
callback that is executed when the Promise is resolved or rejected.NOTE: The specified callback does not affect the resulting Promise's outcome; any return value is ignored and any Error is rethrown.
The text was updated successfully, but these errors were encountered: