Comparing version 1.3.1 to 1.3.2
@@ -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 @@ } |
{ | ||
"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", |
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
45627
1050