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

baobab

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baobab - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

2

bower.json
{
"name": "baobab",
"main": "build/baobab.min.js",
"version": "0.4.1",
"version": "0.4.2",
"homepage": "https://github.com/Yomguithereal/baobab",

@@ -6,0 +6,0 @@ "author": {

@@ -12,3 +12,3 @@ /**

Object.defineProperty(Baobab, 'version', {
value: '0.4.1'
value: '0.4.2'
});

@@ -15,0 +15,0 @@

{
"name": "baobab",
"version": "0.4.1",
"version": "0.4.2",
"description": "JavaScript data tree with cursors.",

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

@@ -119,5 +119,11 @@ /**

// If we reached here via a recursive call, object may be undefined because
// not all items in a collection will have the same deep nesting structure
if (!object) {
return false;
}
for (k in spec) {
if (type.Object(spec[k])) {
ok = ok && compare(object[k]);
ok = ok && compare(object[k], spec[k]);
}

@@ -124,0 +130,0 @@ else if (type.Array(spec[k])) {

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