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

Update link in unrar doc to bitjs on github.

This commit is contained in:
codedread 2017-02-21 18:24:17 -08:00
parent 8f9a1ed2fa
commit e412022a58
2 changed files with 2 additions and 5 deletions

View file

@ -1329,10 +1329,7 @@ const unrar = function(arrayBuffer) {
totalFilesInArchive = localFiles.length;
// now we have all information but things are unpacked
// TODO: unpack
localFiles = localFiles.sort(function(a,b) {
return a.filename.toLowerCase() > b.filename.toLowerCase() ? 1 : -1;
});
localFiles = localFiles.sort((a,b) => a.filename.toLowerCase() > b.filename.toLowerCase() ? 1 : -1);
info(localFiles.map(function(a){return a.filename}).join(', '));
for (let i = 0; i < localFiles.length; ++i) {

View file

@ -550,7 +550,7 @@ ZeroCount 4 bits (only present if BitLength is 15)
<ul>
<li>Eugene Roshal &lt;roshal@rarlab.com&gt; - creator and owner of the RAR format</li>
<li>Jeff Schiller &lt;codedread@gmail.com&gt; - creator of this document as part of the <a href="http://kthoom.googlecode.com/">kthoom</a> project</li>
<li>Jeff Schiller &lt;codedread@gmail.com&gt; - creator of this document as part of the <a href="http://github.com/codedread/bitjs/">bitjs</a> project</li>
</ul>
</section>