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

deep-storage

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-storage - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

5

lib/index.d.ts

@@ -44,2 +44,6 @@ export declare type StateUpdateCallback = <DeepState>(path: Path, newState: DeepState, oldState: DeepState) => void;

root: () => DeepStorage<RootState>;
/**
* The path from the root to this storage
*/
path: Path;
}

@@ -74,2 +78,3 @@ /**

root: () => this;
path: Path;
}

@@ -76,0 +81,0 @@ export declare class NestedDeepStorage<State, RootState> implements DeepStorage<State, RootState> {

1

lib/index.js

@@ -165,2 +165,3 @@ "use strict";

this.root = function () { return _this; };
this.path = [];
}

@@ -167,0 +168,0 @@ return DefaultDeepStorage;

2

package.json
{
"name": "deep-storage",
"version": "0.3.0",
"version": "0.3.1",
"description": "Simple observable state management for reactive applications",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -55,2 +55,6 @@ export type StateUpdateCallback = <DeepState>(path: Path, newState: DeepState, oldState: DeepState) => void;

/**
* The path from the root to this storage
*/
path: Path
}

@@ -168,2 +172,3 @@

root = () => this;
path: Path = [];
}

@@ -170,0 +175,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc