Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created October 25, 2015 00:12
Show Gist options
  • Save brentvatne/9d4b135b2ffdf499f26d to your computer and use it in GitHub Desktop.
Save brentvatne/9d4b135b2ffdf499f26d to your computer and use it in GitHub Desktop.
export default store => next => action => {
console.log('dispatching', action.type);
let before = new Date();
let result = next(action);
let after = new Date();
let total = after - before;
console.log(`completed ${action.type} in ${total}ms`);
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment