Comparing version 0.13.2 to 0.13.3
{ | ||
"name": "dynalite", | ||
"version": "0.13.2", | ||
"version": "0.13.3", | ||
"description": "An implementation of Amazon's DynamoDB built on LevelDB", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -383,2 +383,9 @@ var Big = require('big.js') | ||
return 'One or more parameter values were invalid: Input collection ' + valueStr(value[type]) + 'of type BS contains duplicates.' | ||
if (type == 'M') { | ||
for (var attr in value[type]) { | ||
msg = validateAttributeValue(value[type][attr]) | ||
if (msg) return msg | ||
} | ||
} | ||
} | ||
@@ -385,0 +392,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
134385
3103