Skip to content

Commit

Permalink
fix incorrect import in EntrySource
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Sep 6, 2023
1 parent 9f7b21c commit 8705e90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "armarius",
"version": "1.14.0",
"version": "1.14.1",
"description": "A JavaScript library to read, write, and merge ZIP archives in web browsers.",
"repository": "github:aternosorg/armarius",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/Archive/EntrySource/EntrySource.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import DataDescriptor from '../Structure/DataDescriptor.js';
import UnicodeExtraField from '../Structure/ExtraField/UnicodeExtraField.js';
import MsDosTime from '../../Util/MsDosTime.js';
import BigInt from '../../Util/BigInt.js';
import {CRC32} from '../../../index.js';
import CRC32 from '../../Util/CRC32.js';
import FeatureError from '../../Error/FeatureError.js';

const encoder = new TextEncoder();
Expand Down

0 comments on commit 8705e90

Please sign in to comment.