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

dynamodb-toolbox

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynamodb-toolbox - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

7

dist/classes/Table.js

@@ -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);

8

package.json
{
"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

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