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 discovered today that flatry doesn't seem to work with Promise.all, which is itself a promise.
In other words, I had code like this:
const [err, res] = await flatry(Promise.all(promises))
Instead of returning an err object in the case of an error within the promises, it simply throws an error.
err
The text was updated successfully, but these errors were encountered:
I tested it and it seems to work fine for me. Can you provide a more complete example?
Sorry, something went wrong.
No branches or pull requests
I discovered today that flatry doesn't seem to work with Promise.all, which is itself a promise.
In other words, I had code like this:
Instead of returning an
err
object in the case of an error within the promises, it simply throws an error.The text was updated successfully, but these errors were encountered: