Skip to content

Commit 3fa4e77

Browse files
committed
removing console.log
1 parent 1accff9 commit 3fa4e77

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

utils/crawl-complexity.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
var
32
cr = require('complexity-report'),
43
fs = require('fs'),
@@ -17,7 +16,6 @@
1716
.on("file", function (root, fileStats, next) {
1817

1918
var fileRef = require('path').normalize(root + "/" + fileStats.name);
20-
console.log(fileRef);
2119

2220
if( (/\.(js)$/i).test(fileRef) ) {
2321

@@ -55,4 +53,4 @@
5553
.on("end", function(){ cb(errStack, reportList); })
5654
;
5755

58-
}
56+
}

0 commit comments

Comments
 (0)