Created
November 21, 2014 16:15
-
-
Save jeremyckahn/ef7f74080993efd14c2b to your computer and use it in GitHub Desktop.
Browse localStorage more easily.
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
// #protip: Save this as a Chrome Devtools snippet! | |
// http://www.briangrinstead.com/blog/devtools-snippets | |
Object.keys(window.localStorage).forEach(function (key) { | |
console.log(key, JSON.parse(window.localStorage[key])); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment