mirror of
https://github.com/codedread/bitjs
synced 2025-10-04 10:09:16 +02:00
Rename binary.js to io.js
This commit is contained in:
parent
b2d58e9f49
commit
f4322ae65a
5 changed files with 5 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html><head>
|
<html><head>
|
||||||
|
<script src="io.js"></script>
|
||||||
<script src="archive.js"></script>
|
<script src="archive.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* binary.js
|
* io.js
|
||||||
*
|
*
|
||||||
* Provides readers for bit/byte streams (reading) and a byte buffer (writing).
|
* Provides readers for bit/byte streams (reading) and a byte buffer (writing).
|
||||||
*
|
*
|
2
unrar.js
2
unrar.js
|
@ -10,7 +10,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('binary.js');
|
importScripts('io.js');
|
||||||
importScripts('archive.js');
|
importScripts('archive.js');
|
||||||
|
|
||||||
// Progress variables.
|
// Progress variables.
|
||||||
|
|
2
untar.js
2
untar.js
|
@ -9,7 +9,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('binary.js');
|
importScripts('io.js');
|
||||||
importScripts('archive.js');
|
importScripts('archive.js');
|
||||||
|
|
||||||
// Progress variables.
|
// Progress variables.
|
||||||
|
|
2
unzip.js
2
unzip.js
|
@ -11,7 +11,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('binary.js');
|
importScripts('io.js');
|
||||||
importScripts('archive.js');
|
importScripts('archive.js');
|
||||||
|
|
||||||
// Progress variables.
|
// Progress variables.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue