Skip to content

Commit

Permalink
Remove unintended 'console.log'
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jun 9, 2020
1 parent 9058ab4 commit 2496c81
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions resources/utils.js
Expand Up @@ -49,13 +49,6 @@ function rmdirRecursive(dirPath) {
}

function readdirRecursive(dirPath, opts = {}) {
console.log('-------');
const result = readdirRecursive2(dirPath, opts);
console.log('+++++++');
return result;
}

function readdirRecursive2(dirPath, opts = {}) {
const { ignoreDir } = opts;
const result = [];
for (const dirent of fs.readdirSync(dirPath, { withFileTypes: true })) {
Expand Down

0 comments on commit 2496c81

Please sign in to comment.