New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

dynamodb-enhanced

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynamodb-enhanced - npm Package Compare versions

Comparing version 0.4.0-k to 0.4.0-l

11

lib/ddb.js

@@ -573,7 +573,14 @@ // Copyright Teleportd Ltd. and other Contributors

*/
query = function(table, hash, options, cb) {
query = function(table, hash, operator, options, cb) {
var data = {};
try {
for(var i in hash) {
if(hash.hasOwnProperty(i)) {
hash[i] = {ComparisonOperator: operator, AttributeValueList: [scToDDB(hash[i])]}
}
}
data.TableName = table;
data.HashKeyValue = scToDDB(hash)
data.KeyConditions = hash;
if(options.attributesToGet) {

@@ -580,0 +587,0 @@ data.AttributesToGet = options.attributesToGet;

2

package.json
{
"name": "dynamodb-enhanced",
"version": "0.4.0k",
"version": "0.4.0l",
"description": "Simple DynamoDB Library for Node.js. enhanced version of dynamodb by Stanislas Polu",

@@ -5,0 +5,0 @@ "keywords": ["dynamo", "node", "db", "aws", "amazon"],

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