Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Created October 16, 2019 07:35
Show Gist options
  • Save Sawtaytoes/6f954ea6ff5720974cc98e3729e118c0 to your computer and use it in GitHub Desktop.
Save Sawtaytoes/6f954ea6ff5720974cc98e3729e118c0 to your computer and use it in GitHub Desktop.
const dispatchOnError = (
actionCreator,
returnValue,
) => (
catchError((
error,
) => {
dispatch(
actionCreator(
error,
)
)
return (
returnValue
? of(returnValue)
: EMPTY
)
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment