Skip to content

Instantly share code, notes, and snippets.

@yotavm
Created May 10, 2020 05:14
Show Gist options
  • Save yotavm/1757746ce5911b14b73d8f3ce69ec3df to your computer and use it in GitHub Desktop.
Save yotavm/1757746ce5911b14b73d8f3ce69ec3df to your computer and use it in GitHub Desktop.
edge check
const handleSideEffects = sideEffects => sideEffect => next => action => {
try {
console.log(sideEffects)
sideEffect()
next(action);
} catch (e) {
console.log('error yotav', e);
}
};
handleSideEffects({})(()=>{console.log('sideEffect')})((action)=>{console.log(action)})('action')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment