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

dynaql

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynaql - npm Package Compare versions

Comparing version 2.2.2 to 2.2.3

2

package.json
{
"name": "dynaql",
"version": "2.2.2",
"version": "2.2.3",
"description": "Dynamo library to make interacting with dynamo easier",

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

@@ -10,3 +10,11 @@ const AWS = require('aws-sdk');

let { result } = await listTables(Promise.resolve({ client }));
let result;
do {
let data = await listTables(Promise.resolve({ client }));
if (data.result) {
result = data.result;
} else {
await new Promise(resolve => setTimeout(resolve, 100));
}
} while (!result);

@@ -13,0 +21,0 @@ if (!result) result = []

@@ -38,5 +38,3 @@ const uuid = require('uuid/v4');

it('can sort forward', async () => {
})
it('can sort forward', async () => {});
});

Sorry, the diff of this file is not supported yet

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