Skip to content

Commit

Permalink
remove unused constant
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Apr 24, 2024
1 parent c5e0fd7 commit 4a09d2e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion index-fflate.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export {
ERR_HTTP_RANGE,
ERR_BAD_FORMAT,
ERR_EOCDR_NOT_FOUND,
ERR_EOCDR_ZIP64_NOT_FOUND,
ERR_EOCDR_LOCATOR_ZIP64_NOT_FOUND,
ERR_CENTRAL_DIRECTORY_NOT_FOUND,
ERR_LOCAL_FILE_HEADER_NOT_FOUND,
Expand Down
4 changes: 0 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1960,10 +1960,6 @@ export const ERR_BAD_FORMAT: string;
* End of Central Directory Record not found error
*/
export const ERR_EOCDR_NOT_FOUND: string;
/**
* Zip64 End of Central Directory Record not found error
*/
export const ERR_EOCDR_ZIP64_NOT_FOUND: string;
/**
* Zip64 End of Central Directory Locator not found error
*/
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export {
ERR_HTTP_RANGE,
ERR_BAD_FORMAT,
ERR_EOCDR_NOT_FOUND,
ERR_EOCDR_ZIP64_NOT_FOUND,
ERR_EOCDR_LOCATOR_ZIP64_NOT_FOUND,
ERR_CENTRAL_DIRECTORY_NOT_FOUND,
ERR_LOCAL_FILE_HEADER_NOT_FOUND,
Expand Down
2 changes: 0 additions & 2 deletions lib/core/zip-reader.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ import {

const ERR_BAD_FORMAT = "File format is not recognized";
const ERR_EOCDR_NOT_FOUND = "End of central directory not found";
const ERR_EOCDR_ZIP64_NOT_FOUND = "End of Zip64 central directory not found";
const ERR_EOCDR_LOCATOR_ZIP64_NOT_FOUND = "End of Zip64 central directory locator not found";
const ERR_CENTRAL_DIRECTORY_NOT_FOUND = "Central directory header not found";
const ERR_LOCAL_FILE_HEADER_NOT_FOUND = "Local file header not found";
Expand Down Expand Up @@ -359,7 +358,6 @@ export {
ZipReaderStream,
ERR_BAD_FORMAT,
ERR_EOCDR_NOT_FOUND,
ERR_EOCDR_ZIP64_NOT_FOUND,
ERR_EOCDR_LOCATOR_ZIP64_NOT_FOUND,
ERR_CENTRAL_DIRECTORY_NOT_FOUND,
ERR_LOCAL_FILE_HEADER_NOT_FOUND,
Expand Down

0 comments on commit 4a09d2e

Please sign in to comment.