Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

state-tree

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

state-tree - npm Package Compare versions

Comparing version 0.1.14 to 0.1.15

react/Decorator.js

2

package.json
{
"name": "state-tree",
"version": "0.1.14",
"version": "0.1.15",
"description": "A state tree that handles reference updates and lets you flush a description of changes",

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

@@ -302,4 +302,8 @@ var subscribers = [];

value = cb(Object.keys(deps).reduce(function (props, key) {
var path = deps[key].split('.');
props[key] = getByPath(path, passedState);
if (typeof deps[key] === 'string') {
var path = deps[key].split('.');
props[key] = getByPath(path, passedState);
} else {
props[key] = deps[key].get(passedState);
}
return props;

@@ -306,0 +310,0 @@ }, {}));

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