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
The method should group the promise results PromiseSettledResult<any>[] by status to get two arrays with fulfilled and rejected promises:
PromiseSettledResult<any>[]
const {fulfilled, rejected} = groupBy('status', results);
Here's the PoC from @BioPhoton
The text was updated successfully, but these errors were encountered:
Let's implement this in the next milestone or at lease long after #275.
Sorry, something went wrong.
feat(core): add grouping of promise results by status
229731b
Closes #287 #287
5f50e8e
MishaSeredenkoPushBased
Successfully merging a pull request may close this issue.
The method should group the promise results
PromiseSettledResult<any>[]
by status to get two arrays with fulfilled and rejected promises:const {fulfilled, rejected} = groupBy('status', results);
Here's the PoC from @BioPhoton
The text was updated successfully, but these errors were encountered: