Skip to content

Instantly share code, notes, and snippets.

@qmmr
Created April 6, 2016 14:00
Show Gist options
  • Save qmmr/6264218d03199c2c00e4ce59c59ab9ef to your computer and use it in GitHub Desktop.
Save qmmr/6264218d03199c2c00e4ce59c59ab9ef to your computer and use it in GitHub Desktop.
Redux thunkMiddleware in ES5
// INFO: ThunkMiddleware
var thunkMiddleware = function (store) {
return function (next) {
return function (action) {
if (typeof action === 'function') {
action(store.dispatch, store.getState);
}
return next(action);
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment