mirror of
https://github.com/codedread/bitjs
synced 2025-10-04 18:19:15 +02:00
Update link in unrar doc to bitjs on github.
This commit is contained in:
parent
8f9a1ed2fa
commit
e412022a58
2 changed files with 2 additions and 5 deletions
|
@ -1329,10 +1329,7 @@ const unrar = function(arrayBuffer) {
|
||||||
totalFilesInArchive = localFiles.length;
|
totalFilesInArchive = localFiles.length;
|
||||||
|
|
||||||
// now we have all information but things are unpacked
|
// now we have all information but things are unpacked
|
||||||
// TODO: unpack
|
localFiles = localFiles.sort((a,b) => a.filename.toLowerCase() > b.filename.toLowerCase() ? 1 : -1);
|
||||||
localFiles = localFiles.sort(function(a,b) {
|
|
||||||
return a.filename.toLowerCase() > b.filename.toLowerCase() ? 1 : -1;
|
|
||||||
});
|
|
||||||
|
|
||||||
info(localFiles.map(function(a){return a.filename}).join(', '));
|
info(localFiles.map(function(a){return a.filename}).join(', '));
|
||||||
for (let i = 0; i < localFiles.length; ++i) {
|
for (let i = 0; i < localFiles.length; ++i) {
|
||||||
|
|
|
@ -550,7 +550,7 @@ ZeroCount 4 bits (only present if BitLength is 15)
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Eugene Roshal <roshal@rarlab.com> - creator and owner of the RAR format</li>
|
<li>Eugene Roshal <roshal@rarlab.com> - creator and owner of the RAR format</li>
|
||||||
<li>Jeff Schiller <codedread@gmail.com> - creator of this document as part of the <a href="http://kthoom.googlecode.com/">kthoom</a> project</li>
|
<li>Jeff Schiller <codedread@gmail.com> - creator of this document as part of the <a href="http://github.com/codedread/bitjs/">bitjs</a> project</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue