New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

localstorage-enhance

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

localstorage-enhance - npm Package Compare versions

Comparing version

to
1.0.7

4

dist/index.js

@@ -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",