localstorage-enhance
Advanced tools
Comparing version
@@ -295,3 +295,3 @@ var __defProp = Object.defineProperty; | ||
class LocalStorageClass { | ||
constructor({ storageKey, capacity = 200, encrypt = false }) { | ||
constructor({ storageKey, capacity = 888, encrypt = false }) { | ||
__publicField(this, "storageKey"); | ||
@@ -298,0 +298,0 @@ __publicField(this, "capacity"); |
import LRUCache from './LRUCache'; | ||
declare type Data = string | number | boolean | undefined | null | Object; | ||
declare type Data = string | number | boolean | undefined | null | object; | ||
interface DataObj { | ||
@@ -4,0 +4,0 @@ data: Data; |
{ | ||
"name": "localstorage-enhance", | ||
"description": "Enhanced version of localStorage", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"type": "module", | ||
@@ -36,4 +36,4 @@ "main": "dist/index.js", | ||
}, | ||
"homepage": "https://github.com/SSSensational/localstorage-enhance/blob/main/README.md" | ||
"homepage": "https://github.com/SSSensational/localstorage-enhance" | ||
} |
@@ -22,2 +22,5 @@ localstorage-enhance | ||
// data can be of the following types | ||
type Data = string | number | boolean | undefined | null | object; | ||
LocalStorage.setItem({ key: 'demo', data: { test: 234 }}); | ||
@@ -24,0 +27,0 @@ const item = LocalStorage.getItem('demo'); // { test: 234 } |
21794
0.51%9
28.57%502
0.4%138
2.22%