Comparing version 2.2.2 to 2.2.3
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
157539
1097