This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for git-annex on Ubuntu 18.04.3 LTS | |
| Build date: 2020-01-24 01:55:50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for git-annex on Ubuntu 18.04.3 LTS | |
| Build date: 2020-01-24 00:45:35 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: gpl-3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function sortindex(array){ | |
| var ind = []; | |
| for (var i = 0; i < array.length; i++){ | |
| ind.push([array[i],i]); | |
| } | |
| ind.sort(function(left,right){ | |
| return left[0] < right[0] ? -1 : 1; | |
| }); | |
| var indices = []; |