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

idea-toolbox

Package Overview
Dependencies
Maintainers
1
Versions
377
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idea-toolbox - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

4

index.js

@@ -60,3 +60,3 @@ 'use strict';

if(currentChunk+chunksSize < batchOps.length)
dynamoBatchOperation(batchOps, table, currentChunk+chunksSize, chunksSize, doneCb);
dynamoBatchOperation(dynamo, batchOps, table, currentChunk+chunksSize, chunksSize, doneCb);
// no more chunks to manage: we're done

@@ -81,5 +81,5 @@ else doneCb(batchOps.length);

scanParams.ExclusiveStartKey = data.LastEvaluatedKey;
dynamoScanOverLimit(scanParams, items, callback);
dynamoQueryOverLimit(dynamo, scanParams, callback, items);
} else callback(null, items);
});
}
{
"name": "idea-toolbox",
"version": "0.0.1",
"version": "0.0.2",
"description": "IDEA's utility functions",

@@ -5,0 +5,0 @@ "engines": {

@@ -7,3 +7,8 @@ # IDEA's toolbox

## Release a new version on npm
1. Commit the changes on GitHub
1. Update the versions (find and replace, e.g. 0.0.1 -> 0.0.2)
1. Release the new version on npm with `npm publish`
## References
- https://medium.com/@jdaudier/how-to-create-and-publish-your-first-node-js-module-444e7585b738
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