1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-04 01:59:15 +02:00

Rename binary.js to io.js

This commit is contained in:
codedread 2011-09-18 15:07:16 -05:00
parent b2d58e9f49
commit f4322ae65a
5 changed files with 5 additions and 4 deletions

View file

@ -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>

View file

@ -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).
* *

View file

@ -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.

View file

@ -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.

View file

@ -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.