generate valid human readable text for 0 - fixed #9342
This commit is contained in:
parent
5c8e5e223d
commit
ccc1f09627
2 changed files with 3 additions and 1 deletions
|
@ -1213,7 +1213,7 @@ $.fn.filterAttr = function(attr_name, attr_value) {
|
|||
function humanFileSize(size, skipSmallSizes) {
|
||||
var humanList = ['B', 'kB', 'MB', 'GB', 'TB'];
|
||||
// Calculate Log with base 1024: size = 1024 ** order
|
||||
var order = size?Math.floor(Math.log(size) / Math.log(1024)):0;
|
||||
var order = size > 0 ? Math.floor(Math.log(size) / Math.log(1024)) : 0;
|
||||
// Stay in range of the byte sizes that are defined
|
||||
order = Math.min(humanList.length - 1, order);
|
||||
var readableFormat = humanList[order];
|
||||
|
|
|
@ -465,6 +465,8 @@ describe('Core base tests', function() {
|
|||
it('renders file sizes with the correct unit', function() {
|
||||
var data = [
|
||||
[0, '0 B'],
|
||||
["0", '0 B'],
|
||||
["A", 'NaN B'],
|
||||
[125, '125 B'],
|
||||
[128000, '125 kB'],
|
||||
[128000000, '122.1 MB'],
|
||||
|
|
Loading…
Reference in a new issue