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

dynamodb-recs

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynamodb-recs - npm Package Compare versions

Comparing version 1.0.16 to 1.0.17

5

handlers/util.js

@@ -25,3 +25,6 @@ const _ = require('lodash');

if (apiGateway) {
return event = _.extend({}, event.queryStringParameters || {});
return event = _.extend({},
event.body || {},
event.queryStringParameters || {}
);
}

@@ -28,0 +31,0 @@

9

handlers/util.spec.js

@@ -94,8 +94,13 @@ const chai = require('chai');

expect(proxyIntegration({
body: {
a: 1,
b: 1
},
queryStringParameters: {
a: 1
a: 2
},
b: 1
}, true)).to.deep.equal({
a: 1
a: 2,
b: 1
});

@@ -102,0 +107,0 @@ });

{
"name": "dynamodb-recs",
"version": "1.0.16",
"version": "1.0.17",
"main": "index.js",

@@ -5,0 +5,0 @@ "license": "MIT",

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