Skip to content

Commit

Permalink
remove console.log. closes #64
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoshwolfe committed Oct 30, 2017
1 parent 3c40b76 commit a841d90
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion index.js
Expand Up @@ -296,7 +296,6 @@ ZipFile.prototype._readEntry = function() {
entry.fileName = self.decodeStrings ? decodeBuffer(buffer, 0, entry.fileNameLength, isUtf8)
: buffer.slice(0, entry.fileNameLength);

console.log("central entry: " + entry.fileName);
// 46+n - Extra field
var fileCommentStart = entry.fileNameLength + entry.extraFieldLength;
var extraFieldBuffer = buffer.slice(entry.fileNameLength, fileCommentStart);
Expand Down

0 comments on commit a841d90

Please sign in to comment.