Skip to content

Instantly share code, notes, and snippets.

@Scarysize
Created May 28, 2016 08:50
Show Gist options
  • Save Scarysize/9318f6f6f491b1196daa0d2026560eef to your computer and use it in GitHub Desktop.
Save Scarysize/9318f6f6f491b1196daa0d2026560eef to your computer and use it in GitHub Desktop.
function timestampAction(action) {
return {
action,
time: Date.now()
}
}
function storageMiddleware() {
return () => next => action {
const stampedAction = timestampAction(action);
localStorage.setItem('STORAGE-KEY', JSON.stringify(stampedAction));
next(action);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment