(<1kb) A lite localStorage plugin with namespace.
$ npm install --save-dev micro-storage
microStorage( namespace : String )
let store = microStorage('namespace');
store( key : String, value : anyType )
store('myKey', myValue);
store( key : String ) => value : anyType
store('myKey'); // myValue
store.remove( key : String )
store.remove('myKey');
store.list() => list : Array
store.list(); // ['myKey']
store.clear();
MIT