We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would love to have cleanup functions that would not require me to rethrow the error.
promise.tapcatch(function(error) { // clean up some stuff in scope });
instead of
promise.catch(function(error) { // clean up some stuff in scope throw error; });
low priority... would be nice to have.
The text was updated successfully, but these errors were encountered:
dupe of #589
Sorry, something went wrong.
Which is a dupe of #517... so I guess this isn't going in, huh?
As others have pointed out, this is a dupe.
No branches or pull requests
I would love to have cleanup functions that would not require me to rethrow the error.
instead of
low priority... would be nice to have.
The text was updated successfully, but these errors were encountered: