# Lostora.js **Repository Path**: mirrors_dafrok/Lostora.js ## Basic Information - **Project Name**: Lostora.js - **Description**: A localStorage handler to support Object or JSON - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Lostora A localStorage handler to support Object or JSON ## Usage ### Install ### API #### Lostora.set(key,value) > `Lostora.set("foo","bar")` > > `console.log(localStorage)` > > Storage {foo: "bar", length: 1} > > `Lostora.set("baz",{baz:"qux"})` > > `console.log(localStorage)` > > Storage {baz: "{"baz":"qux"}", foo: "bar", length: 2}