Skip to content

Commit b31a6e2

Browse files
committed
Change double-equal comparison to triple-equal
1 parent a0ce148 commit b31a6e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class ServerlessDynamodbLocal {
159159
get tables() {
160160
const resources = this.service.resources.Resources;
161161
return Object.keys(resources).map((key) => {
162-
if (resources[key].Type == "AWS::DynamoDB::Table") {
162+
if (resources[key].Type === "AWS::DynamoDB::Table") {
163163
return resources[key].Properties;
164164
}
165165
}).filter(n => n);

0 commit comments

Comments
 (0)