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

dyno

Package Overview
Dependencies
Maintainers
21
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dyno - npm Package Compare versions

Comparing version 0.4.5 to 0.4.6

6

lib/batch.js

@@ -53,3 +53,4 @@ var util = require('util');

chunk = [];
thisChunk = 0;
chunk.push(putRequests[i]);
thisChunk = putRequestSizes[i];
}

@@ -98,2 +99,3 @@ }

chunk = [];
chunk.push(deleteRequests[i]);
}

@@ -154,2 +156,2 @@ }

return size;
}
}
{
"name": "dyno",
"version": "0.4.5",
"version": "0.4.6",
"description": "Simple DynamoDB client",

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

@@ -15,3 +15,6 @@ var test = require('tap').test;

t.equal(err, null);
t.end();
dyno.scan({pages:0}, function(err, data){
t.equal(data.items.length, 1000, 'there are the right number of items in dynamo');
t.end();
});
}

@@ -22,3 +25,3 @@ });

var itemIds = randomItems(1000).map(function(item){
return {
return {
id: item.id,

@@ -32,3 +35,6 @@ range: item.range

t.equal(err, null);
t.end();
dyno.scan({pages:0}, function(err, data){
t.equal(data.items.length, 0, 'there are the right number of items in dynamo');
t.end();
});
}

@@ -35,0 +41,0 @@ });

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