Skip to content

Instantly share code, notes, and snippets.

@ruffle1986
Created September 14, 2015 09:22
Show Gist options
  • Save ruffle1986/cde812739ffdd9d32271 to your computer and use it in GitHub Desktop.
Save ruffle1986/cde812739ffdd9d32271 to your computer and use it in GitHub Desktop.
Redux Crash Reporter Middleware
export default store => next => action {
try {
return next(action)
} catch (err) {
// log error and handle the exception
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment