!62 Fix: Unexpected use of continue statement.

Merge pull request !62 from tzhtaylor/master
This commit is contained in:
openInula-robot 2023-10-27 07:44:46 +00:00 committed by Gitee
commit 490b84a721
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -128,9 +128,9 @@ class BasicGenerator extends Generator {
if (fs.existsSync(fullpath)) {
this.traverseDirCapture(fullpath, dirCallback, fileCallback);
}
continue;
} else {
fileCallback(fullpath);
}
fileCallback(fullpath);
}
}