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.2

dist/__tests__/index.test.d.ts

2

dist/index.js

@@ -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 }