Skip to content

Instantly share code, notes, and snippets.

@jonniedarko
Created January 7, 2016 14:30
Show Gist options
  • Save jonniedarko/64cb45b1f611c6a16f3b to your computer and use it in GitHub Desktop.
Save jonniedarko/64cb45b1f611c6a16f3b to your computer and use it in GitHub Desktop.
Useful console functions
var localStorageToJSON = function localStorageToJSONFn(obj){
var storage = {};
for(var item in obj){
try{
json = JSON.parse(obj[item]);
storage[item] = json;
} catch(err){
storage[item] = obj[item]
}
}
return storage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment