Simple localStorage wrapper
A really simple wrapper around localStorage
to parse/stringify-objects
:
var storage = function (a, b) {
return function (c, d) {
return d == null ? a[c] && b.parse(a[c]) : a[c] = b.stringify(d)
}
}(window.localStorage || {}, JSON);
The usage is quite simple:
// set
storage('foo', {
key: 'value'
});
// get
storage('foo'); // => { key: 'value' }
Written by Yannick Albert
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Parse
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#