Created
September 14, 2018 00:04
-
-
Save StevenJL/2bfa8873ad45beef66ff08eec79afec4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createThunkMiddleware(extraArgument) { | |
return ({ dispatch, getState }) => next => action => { | |
if (typeof action === 'function') { | |
return action(dispatch, getState, extraArgument); | |
} | |
return next(action); | |
}; | |
} | |
const thunk = createThunkMiddleware(); | |
thunk.withExtraArgument = createThunkMiddleware; | |
export default thunk; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment