Skip to content

Commit 8010713

Browse files
committed
Fix missing semicolon
1 parent eca6544 commit 8010713

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
@@ -6,7 +6,7 @@ function isModuleExports(node) {
66
}
77

88
function isDefaultExport(node) {
9-
return node?.type === "ExportDefaultDeclaration"
9+
return node?.type === "ExportDefaultDeclaration";
1010
}
1111

1212
function isObjectWithProperties(node) {

0 commit comments

Comments
 (0)