├── .gitattributes ├── .github └── workflows │ ├── coverage.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── lib ├── BufferStream.js ├── Decrypt.js ├── NoopStream.js ├── Open │ ├── directory.js │ ├── index.js │ └── unzip.js ├── PullStream.js ├── extract.js ├── parse.js ├── parseBuffer.js ├── parseDateTime.js ├── parseExtraField.js └── parseOne.js ├── package.json ├── test ├── autodrain-passthrough.js ├── broken.js ├── chunkBoundary.js ├── compressed-crx.js ├── compressed.js ├── extract-finish.js ├── extractFromUrl.js ├── extractNormalize.js ├── fileSizeUnknownFlag.js ├── forceStream.js ├── notArchive.js ├── office-files.js ├── open-extract.js ├── openBuffer.js ├── openComment.js ├── openCustom.js ├── openFile.js ├── openFileEncrypted.js ├── openS3.js ├── openS3_v3.js ├── openUrl.js ├── parseBuffer.js ├── parseCompressedDirectory.js ├── parseContent.js ├── parseDateTime.js ├── parseOneEntry.js ├── parsePromise.js ├── pipeSingleEntry.js ├── streamSingleEntry.js ├── uncompressed.js └── zip64.js ├── testData ├── big.zip ├── bootstrap-reboot.min.css ├── chunk-boundary │ ├── chunk-boundary-archive.zip │ └── chunk-boundary-archive │ │ ├── chunk-boundary.txt │ │ └── chunk-boundary2.txt ├── compressed-OSX-Finder │ ├── archive.zip │ └── inflated │ │ ├── dir │ │ └── fileInsideDir.txt │ │ └── file.txt ├── compressed-comment │ ├── archive.zip │ └── inflated │ │ ├── dir │ │ └── fileInsideDir.txt │ │ └── file.txt ├── compressed-cp866 │ ├── archive.zip │ └── inflated │ │ └── Тест.txt ├── compressed-directory-entry │ ├── archive.zip │ └── inflated │ │ ├── META-INF │ │ └── container.xml │ │ ├── content.opf │ │ ├── index.html │ │ ├── mimetype │ │ ├── page_styles.css │ │ ├── stylesheet.css │ │ └── toc.ncx ├── compressed-encrypted │ ├── archive.zip │ └── inflated │ │ ├── dir │ │ └── fileInsideDir.txt │ │ └── file.txt ├── compressed-flags-set │ ├── archive.zip │ └── inflated │ │ ├── dir │ │ └── fileInsideDir.txt │ │ └── file.txt ├── compressed-standard-crx │ ├── archive.crx │ ├── crxmake.sh │ ├── inflated │ │ ├── dir │ │ │ └── fileInsideDir.txt │ │ └── file.txt │ └── key.pem ├── compressed-standard │ ├── archive.zip │ ├── broken.zip │ ├── file.txt │ └── inflated │ │ ├── dir │ │ └── fileInsideDir.txt │ │ └── file.txt ├── office │ ├── testfile.docx │ └── testfile.xlsx ├── uncompressed │ ├── archive.zip │ └── inflated │ │ ├── dir │ │ └── fileInsideDir.txt │ │ └── file.txt ├── zip-slip │ ├── zip-slip-win.zip │ └── zip-slip.zip ├── zip64-allextrafields.zip ├── zip64-extrafieldoffsetlength.zip └── zip64.zip └── unzip.js /.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/BufferStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/BufferStream.js -------------------------------------------------------------------------------- /lib/Decrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/Decrypt.js -------------------------------------------------------------------------------- /lib/NoopStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/NoopStream.js -------------------------------------------------------------------------------- /lib/Open/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/Open/directory.js -------------------------------------------------------------------------------- /lib/Open/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/Open/index.js -------------------------------------------------------------------------------- /lib/Open/unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/Open/unzip.js -------------------------------------------------------------------------------- /lib/PullStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/PullStream.js -------------------------------------------------------------------------------- /lib/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/extract.js -------------------------------------------------------------------------------- /lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/parse.js -------------------------------------------------------------------------------- /lib/parseBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/parseBuffer.js -------------------------------------------------------------------------------- /lib/parseDateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/parseDateTime.js -------------------------------------------------------------------------------- /lib/parseExtraField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/parseExtraField.js -------------------------------------------------------------------------------- /lib/parseOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/lib/parseOne.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/package.json -------------------------------------------------------------------------------- /test/autodrain-passthrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/autodrain-passthrough.js -------------------------------------------------------------------------------- /test/broken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/broken.js -------------------------------------------------------------------------------- /test/chunkBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/chunkBoundary.js -------------------------------------------------------------------------------- /test/compressed-crx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/compressed-crx.js -------------------------------------------------------------------------------- /test/compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/compressed.js -------------------------------------------------------------------------------- /test/extract-finish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/extract-finish.js -------------------------------------------------------------------------------- /test/extractFromUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/extractFromUrl.js -------------------------------------------------------------------------------- /test/extractNormalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/extractNormalize.js -------------------------------------------------------------------------------- /test/fileSizeUnknownFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/fileSizeUnknownFlag.js -------------------------------------------------------------------------------- /test/forceStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/forceStream.js -------------------------------------------------------------------------------- /test/notArchive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/notArchive.js -------------------------------------------------------------------------------- /test/office-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/office-files.js -------------------------------------------------------------------------------- /test/open-extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/open-extract.js -------------------------------------------------------------------------------- /test/openBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openBuffer.js -------------------------------------------------------------------------------- /test/openComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openComment.js -------------------------------------------------------------------------------- /test/openCustom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openCustom.js -------------------------------------------------------------------------------- /test/openFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openFile.js -------------------------------------------------------------------------------- /test/openFileEncrypted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openFileEncrypted.js -------------------------------------------------------------------------------- /test/openS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openS3.js -------------------------------------------------------------------------------- /test/openS3_v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openS3_v3.js -------------------------------------------------------------------------------- /test/openUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/openUrl.js -------------------------------------------------------------------------------- /test/parseBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/parseBuffer.js -------------------------------------------------------------------------------- /test/parseCompressedDirectory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/parseCompressedDirectory.js -------------------------------------------------------------------------------- /test/parseContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/parseContent.js -------------------------------------------------------------------------------- /test/parseDateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/parseDateTime.js -------------------------------------------------------------------------------- /test/parseOneEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/parseOneEntry.js -------------------------------------------------------------------------------- /test/parsePromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/parsePromise.js -------------------------------------------------------------------------------- /test/pipeSingleEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/pipeSingleEntry.js -------------------------------------------------------------------------------- /test/streamSingleEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/streamSingleEntry.js -------------------------------------------------------------------------------- /test/uncompressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/uncompressed.js -------------------------------------------------------------------------------- /test/zip64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/test/zip64.js -------------------------------------------------------------------------------- /testData/big.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/big.zip -------------------------------------------------------------------------------- /testData/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /testData/chunk-boundary/chunk-boundary-archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/chunk-boundary/chunk-boundary-archive.zip -------------------------------------------------------------------------------- /testData/chunk-boundary/chunk-boundary-archive/chunk-boundary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/chunk-boundary/chunk-boundary-archive/chunk-boundary.txt -------------------------------------------------------------------------------- /testData/chunk-boundary/chunk-boundary-archive/chunk-boundary2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/chunk-boundary/chunk-boundary-archive/chunk-boundary2.txt -------------------------------------------------------------------------------- /testData/compressed-OSX-Finder/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-OSX-Finder/archive.zip -------------------------------------------------------------------------------- /testData/compressed-OSX-Finder/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/compressed-OSX-Finder/inflated/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-OSX-Finder/inflated/file.txt -------------------------------------------------------------------------------- /testData/compressed-comment/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-comment/archive.zip -------------------------------------------------------------------------------- /testData/compressed-comment/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/compressed-comment/inflated/file.txt: -------------------------------------------------------------------------------- 1 | node.js rocks 2 | -------------------------------------------------------------------------------- /testData/compressed-cp866/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-cp866/archive.zip -------------------------------------------------------------------------------- /testData/compressed-cp866/inflated/Тест.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-cp866/inflated/Тест.txt -------------------------------------------------------------------------------- /testData/compressed-directory-entry/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/archive.zip -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/inflated/META-INF/container.xml -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/content.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/inflated/content.opf -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/inflated/index.html -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/page_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/inflated/page_styles.css -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/inflated/stylesheet.css -------------------------------------------------------------------------------- /testData/compressed-directory-entry/inflated/toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-directory-entry/inflated/toc.ncx -------------------------------------------------------------------------------- /testData/compressed-encrypted/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-encrypted/archive.zip -------------------------------------------------------------------------------- /testData/compressed-encrypted/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/compressed-encrypted/inflated/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-encrypted/inflated/file.txt -------------------------------------------------------------------------------- /testData/compressed-flags-set/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-flags-set/archive.zip -------------------------------------------------------------------------------- /testData/compressed-flags-set/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/compressed-flags-set/inflated/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-flags-set/inflated/file.txt -------------------------------------------------------------------------------- /testData/compressed-standard-crx/archive.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard-crx/archive.crx -------------------------------------------------------------------------------- /testData/compressed-standard-crx/crxmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard-crx/crxmake.sh -------------------------------------------------------------------------------- /testData/compressed-standard-crx/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/compressed-standard-crx/inflated/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard-crx/inflated/file.txt -------------------------------------------------------------------------------- /testData/compressed-standard-crx/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard-crx/key.pem -------------------------------------------------------------------------------- /testData/compressed-standard/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard/archive.zip -------------------------------------------------------------------------------- /testData/compressed-standard/broken.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard/broken.zip -------------------------------------------------------------------------------- /testData/compressed-standard/file.txt: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /testData/compressed-standard/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/compressed-standard/inflated/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/compressed-standard/inflated/file.txt -------------------------------------------------------------------------------- /testData/office/testfile.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/office/testfile.docx -------------------------------------------------------------------------------- /testData/office/testfile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/office/testfile.xlsx -------------------------------------------------------------------------------- /testData/uncompressed/archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/uncompressed/archive.zip -------------------------------------------------------------------------------- /testData/uncompressed/inflated/dir/fileInsideDir.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testData/uncompressed/inflated/file.txt: -------------------------------------------------------------------------------- 1 | node.js rocks 2 | -------------------------------------------------------------------------------- /testData/zip-slip/zip-slip-win.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/zip-slip/zip-slip-win.zip -------------------------------------------------------------------------------- /testData/zip-slip/zip-slip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/zip-slip/zip-slip.zip -------------------------------------------------------------------------------- /testData/zip64-allextrafields.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/zip64-allextrafields.zip -------------------------------------------------------------------------------- /testData/zip64-extrafieldoffsetlength.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/zip64-extrafieldoffsetlength.zip -------------------------------------------------------------------------------- /testData/zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/testData/zip64.zip -------------------------------------------------------------------------------- /unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/node-unzipper/HEAD/unzip.js --------------------------------------------------------------------------------