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

beastdb

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beastdb - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

18

lib/imap.js

@@ -70,2 +70,20 @@ // const short = require('short-uuid');

}
else if (this.value instanceof Array) {
for (let i=0; i<this.value.length; i++) {
const v = this.value[i];
if (v instanceof IMap) {
v.getWrites(nodes);
}
}
}
else if (this.value instanceof Object) {
for (let field in this.value) {
const v = this.value[field];
if (v instanceof IMap) {
v.getWrites(nodes);
}
}
}
}

@@ -72,0 +90,0 @@ }

2

package.json
{
"name": "beastdb",
"version": "1.3.1",
"version": "1.3.2",
"description": "A persistence database specializing in state space search problems!",

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

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