state-tree
Advanced tools
Comparing version 0.1.11 to 0.1.12
{ | ||
"name": "state-tree", | ||
"version": "0.1.11", | ||
"version": "0.1.12", | ||
"description": "A state tree that handles reference updates and lets you flush a description of changes", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -124,3 +124,3 @@ var subscribers = []; | ||
get: function (path) { | ||
path = path ? path.split('.') : []; | ||
path = path ? typeof path === 'string' ? path.split('.') : path : []; | ||
return getByPath(path, state); | ||
@@ -127,0 +127,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32998