Skip to content

Instantly share code, notes, and snippets.

@blubbll
Created November 1, 2018 20:37
Show Gist options
  • Select an option

  • Save blubbll/663c6f638f695fb96d332eb4e9745f16 to your computer and use it in GitHub Desktop.

Select an option

Save blubbll/663c6f638f695fb96d332eb4e9745f16 to your computer and use it in GitHub Desktop.
simpleLS
var simpleLS = {
set : function(obj, val){
localStorage.setItem(obj, $.fn.stringifyJSON(val));
},
get: function(obj){
return $.parseJSON($.fn.stringifyJSON(localStorage.getItem(obj))) || {};
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment