mirror of
https://github.com/codedread/bitjs
synced 2025-10-05 18:34:17 +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;
|
||||
|
||||
// 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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue