Skip to content

Commit

Permalink
update built files
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Dec 5, 2024
1 parent 08e5c4c commit 41b1c04
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -10558,8 +10558,8 @@
extendedTimestamp,
encrypted
} = options;
const compressed = level !== 0 && !directory;
let { version, compressionMethod } = options;
const compressed = !directory && (level > 0 || (level === UNDEFINED_VALUE && compressionMethod !== 0));
let rawExtraFieldAES;
if (encrypted && !zipCrypto) {
rawExtraFieldAES = new Uint8Array(getLength(EXTRAFIELD_DATA_AES) + 2);
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4703,8 +4703,8 @@
extendedTimestamp,
encrypted
} = options;
const compressed = level !== 0 && !directory;
let { version, compressionMethod } = options;
const compressed = !directory && (level > 0 || (level === UNDEFINED_VALUE && compressionMethod !== 0));
let rawExtraFieldAES;
if (encrypted && !zipCrypto) {
rawExtraFieldAES = new Uint8Array(getLength(EXTRAFIELD_DATA_AES) + 2);
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -8926,8 +8926,8 @@
extendedTimestamp,
encrypted
} = options;
const compressed = level !== 0 && !directory;
let { version, compressionMethod } = options;
const compressed = !directory && (level > 0 || (level === UNDEFINED_VALUE && compressionMethod !== 0));
let rawExtraFieldAES;
if (encrypted && !zipCrypto) {
rawExtraFieldAES = new Uint8Array(getLength(EXTRAFIELD_DATA_AES) + 2);
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-no-worker-deflate.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-no-worker.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -4703,8 +4703,8 @@
extendedTimestamp,
encrypted
} = options;
const compressed = level !== 0 && !directory;
let { version, compressionMethod } = options;
const compressed = !directory && (level > 0 || (level === UNDEFINED_VALUE && compressionMethod !== 0));
let rawExtraFieldAES;
if (encrypted && !zipCrypto) {
rawExtraFieldAES = new Uint8Array(getLength(EXTRAFIELD_DATA_AES) + 2);
Expand Down
2 changes: 1 addition & 1 deletion dist/zip.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10552,8 +10552,8 @@ function getHeaderInfo(options) {
extendedTimestamp,
encrypted
} = options;
const compressed = level !== 0 && !directory;
let { version, compressionMethod } = options;
const compressed = !directory && (level > 0 || (level === UNDEFINED_VALUE && compressionMethod !== 0));
let rawExtraFieldAES;
if (encrypted && !zipCrypto) {
rawExtraFieldAES = new Uint8Array(getLength(EXTRAFIELD_DATA_AES) + 2);
Expand Down
2 changes: 1 addition & 1 deletion index.min.js

Large diffs are not rendered by default.

0 comments on commit 41b1c04

Please sign in to comment.