mirror of
https://github.com/codedread/bitjs
synced 2025-10-03 17:49:16 +02:00
Fix unrar and unzip importing the right version of ByteBuffer
This commit is contained in:
parent
ab5f6fc6d2
commit
1b00fdaae3
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@
|
||||||
// This file expects to be invoked as a Worker (see onmessage below).
|
// This file expects to be invoked as a Worker (see onmessage below).
|
||||||
importScripts('../io/bitstream-worker.js');
|
importScripts('../io/bitstream-worker.js');
|
||||||
importScripts('../io/bytestream-worker.js');
|
importScripts('../io/bytestream-worker.js');
|
||||||
importScripts('../io/bytebuffer.js');
|
importScripts('../io/bytebuffer-worker.js');
|
||||||
importScripts('archive.js');
|
importScripts('archive.js');
|
||||||
importScripts('rarvm.js');
|
importScripts('rarvm.js');
|
||||||
|
|
||||||
|
|
|
@ -14,9 +14,9 @@
|
||||||
|
|
||||||
// This file expects to be invoked as a Worker (see onmessage below).
|
// This file expects to be invoked as a Worker (see onmessage below).
|
||||||
importScripts('../io/bitstream-worker.js');
|
importScripts('../io/bitstream-worker.js');
|
||||||
importScripts('../io/bytebuffer.js');
|
importScripts('../io/bytebuffer-worker.js');
|
||||||
importScripts('../io/bytestream-worker.js');
|
importScripts('../io/bytestream-worker.js');
|
||||||
importScripts('archive.js');
|
//importScripts('archive.js');
|
||||||
|
|
||||||
const UnarchiveState = {
|
const UnarchiveState = {
|
||||||
NOT_STARTED: 0,
|
NOT_STARTED: 0,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue