Skip to content

Instantly share code, notes, and snippets.

@ironboy
Created December 19, 2016 13:51
Show Gist options
  • Save ironboy/a86892bdac2acb1659c224a54b4c9e8c to your computer and use it in GitHub Desktop.
Save ironboy/a86892bdac2acb1659c224a54b4c9e8c to your computer and use it in GitHub Desktop.
Small localStorage wrapper
function lStore(key,val){
var parsed = JSON.parse(localStorage.store || '{}');
if(val === undefined){
// read
return parsed[key];
}
// write
parsed[key] = val;
localStorage.store = JSON.stringify(parsed);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment