Skip to content

Instantly share code, notes, and snippets.

@jwulf
Created March 5, 2020 03:15
Show Gist options
  • Save jwulf/443ec653fe0aee1fbf78afa332f58773 to your computer and use it in GitHub Desktop.
Save jwulf/443ec653fe0aee1fbf78afa332f58773 to your computer and use it in GitHub Desktop.
const { error, success } = outcomes.reduce((acc, o) => o.error ?
{ error: [...acc.error, o.error], success: acc.success } :
{ error: acc.error, success: [...acc.success, o.success] },
{ error: [], success: [] })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment