dynamodb-toolbox
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -861,3 +861,8 @@ "use strict"; | ||
Responses: result.Responses.map((res, i) => { | ||
return { Item: Entities[i].parse ? Entities[i].parse(res.Item) : res.Item }; | ||
if (res.Item) { | ||
return { Item: Entities[i].parse ? Entities[i].parse(res.Item) : res.Item }; | ||
} | ||
else { | ||
return {}; | ||
} | ||
}) | ||
@@ -864,0 +869,0 @@ } : null); |
{ | ||
"name": "dynamodb-toolbox", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "A simple set of tools for working with Amazon DynamoDB and the DocumentClient.", | ||
@@ -43,5 +43,5 @@ "author": "Jeremy Daly <jeremy@jeremydaly.com>", | ||
"devDependencies": { | ||
"@types/jest": "^26.0.19", | ||
"@types/node": "^14.14.16", | ||
"aws-sdk": "^2.818.0", | ||
"@types/jest": "^26.0.20", | ||
"@types/node": "^14.14.20", | ||
"aws-sdk": "^2.824.0", | ||
"coveralls": "^3.1.0", | ||
@@ -48,0 +48,0 @@ "dynalite": "^3.2.1", |
Sorry, the diff of this file is too big to display
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
276217
3938
1266