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

@bhoos/dynamodb

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bhoos/dynamodb - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

9

cjs/update.js

@@ -16,2 +16,9 @@ 'use strict';

Object.keys(obj).forEach(name => {
const value = obj[name];
// skip any undefined values
if (value === undefined) {
return;
}
const f = `#${name}`;

@@ -22,3 +29,3 @@ const v = `:${name}`;

params.ExpressionAttributeNames[f] = name;
params.ExpressionAttributeValues[v] = obj[name];
params.ExpressionAttributeValues[v] = value;
sep = ',';

@@ -25,0 +32,0 @@ });

2

package.json
{
"name": "@bhoos/dynamodb",
"version": "0.1.10",
"version": "0.1.11",
"description": "Node DyanmoDB Library",

@@ -5,0 +5,0 @@ "main": "cjs/index.js",

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