Skip to content

Commit

Permalink
Lint: Semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel authored and thejoshwolfe committed Apr 25, 2018
1 parent e0c5a94 commit 0681ceb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -607,7 +607,7 @@ function validateFileName(fileName) {
}
// all good
return null;
};
}

function readAndAssertNoEof(reader, buffer, offset, length, position, callback) {
if (length === 0) {
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Expand Up @@ -365,7 +365,7 @@ function manuallyDecodeFileName(fileName) {
if (fileName === "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f") {
// we're not doing the unicode path extra field decoding outside of yauzl.
// just hardcode this answer.
fileName = "七个房间.txt"
fileName = "七个房间.txt";
}
return fileName;
}
Expand Down
2 changes: 1 addition & 1 deletion test/zip64.js
Expand Up @@ -196,7 +196,7 @@ function runTest(cb) {
if (buffersEqual(expectedPrefixBuffer, actualPrefixBuffer)) {
console.log(logPrefix + entry.fileName + ": pass");
} else {
throw new Error(logPrefix + "large.bin contents read did not return expected stream")
throw new Error(logPrefix + "large.bin contents read did not return expected stream");
}
});
});
Expand Down

0 comments on commit 0681ceb

Please sign in to comment.