localstorage-max
v1.0.0
Published
Store items in localStorage as JSON object
Readme
localstorage-max
LocalStorage extension to store more than strings
Usage / API
(ES6)
import LSMax from 'localstorage-max'
LSMax.set('testKey', { foo: 'bar' });
LSMax.get('testKey'); // "{foo:'bar'}"
LSMax.remove('testKey');