localstorage-enhance
Advanced tools
Comparing version
@@ -400,3 +400,3 @@ var __defProp = Object.defineProperty; | ||
try { | ||
if (localStorage) { | ||
if (globalThis.localStorage) { | ||
localStorage.setItem(this.storageKey, this.encrypt ? btoa(JSON.stringify(this.memoryData.toArr())) : JSON.stringify(this.memoryData.toArr())); | ||
@@ -428,3 +428,3 @@ } | ||
this.encrypt = encrypt; | ||
const storageData = localStorage ? localStorage.getItem(this.storageKey) : null; | ||
const storageData = globalThis.localStorage ? localStorage.getItem(this.storageKey) : null; | ||
this.memoryData = new LRUCache(this.capacity); | ||
@@ -431,0 +431,0 @@ if (!storageData) { |
{ | ||
"name": "localstorage-enhance", | ||
"description": "Enhanced version of localStorage", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "main": "dist/index.js", |
21944
0.1%