Skip to content

Commit

Permalink
Fix options passing via Extract
Browse files Browse the repository at this point in the history
  • Loading branch information
mhr3 committed Oct 4, 2020
1 parent 5e5d0be commit 64c7dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/extract.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Extract (opts) {
Transform.call(this);

this.opts = opts || {};
this.unzipStream = new UnzipStream();
this.unzipStream = new UnzipStream(this.opts);
this.unfinishedEntries = 0;
this.afterFlushWait = false;
this.createdDirectories = {};
Expand Down

0 comments on commit 64c7dff

Please # to comment.