(a, i)
| 2086 | } |
| 2087 | |
| 2088 | function removeAtIndex(a, i) { |
| 2089 | var idx = a.indexOf(i); |
| 2090 | if (idx > -1) { |
| 2091 | a.splice(idx, 1); |
| 2092 | return true; |
| 2093 | } |
| 2094 | } |
| 2095 | |
| 2096 | function readableFileSize(size) { |
| 2097 | // Adapted from https://github.com/fkjaekel |
no outgoing calls
no test coverage detected