Socket
Socket
Sign inDemoInstall

cherrytreex

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.3 to 3.0.4

15

cherrytree.js

@@ -89,5 +89,3 @@ (function webpackUniversalModuleDefinition(root, factory) {

};
var isArray = function isArray(obj) {
return dash_toString.call(obj) === '[object Array]';
};
var isArray = Array.isArray;

@@ -105,5 +103,6 @@ var clone = function clone(obj) {

var isEqual = function isEqual(obj1, obj2) {
return keys(obj1).length === keys(obj2).length && keys(obj1).reduce(function (acc, key) {
return acc && obj2[key] === obj1[key];
}, true);
var keys1 = keys(obj1);
return keys1.length === keys(obj2).length && keys1.every(function (key) {
return obj2[key] === obj1[key];
});
};

@@ -127,3 +126,3 @@

var isString = function isString(obj) {
return Object.prototype.toString.call(obj) === '[object String]';
return dash_toString.call(obj) === '[object String]';
};

@@ -835,3 +834,3 @@ // CONCATENATED MODULE: ./lib/invariant.js

log('Transition #' + id, 'FAILED');
logError(err.stack);
logError(err.message || err);
}

@@ -838,0 +837,0 @@ });

{
"name": "cherrytreex",
"version": "3.0.3",
"version": "3.0.4",
"description": "Cherrytree - a flexible hierarchical client side router",

@@ -5,0 +5,0 @@ "main": "cherrytree.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc