lameStorage is a small library that makes working with localStorage easier
const user = new lameStorage("user1", { name: "George", age:25 });
// Update the user1 and get the all object
user.update({ age: 26, isMarried: true }).getValue()
/*
{
name: "George",
age: 26,
isMarried: true
}
*/
Deletes all the data that belongs the current user
user.delete();
user.getValue(); // ERR: " value not found"
lameStorage is released under the MIT license.