We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ce148 commit b31a6e2Copy full SHA for b31a6e2
index.js
@@ -159,7 +159,7 @@ class ServerlessDynamodbLocal {
159
get tables() {
160
const resources = this.service.resources.Resources;
161
return Object.keys(resources).map((key) => {
162
- if (resources[key].Type == "AWS::DynamoDB::Table") {
+ if (resources[key].Type === "AWS::DynamoDB::Table") {
163
return resources[key].Properties;
164
}
165
}).filter(n => n);
0 commit comments