mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-08-07 05:52:18 -04:00
JavaScript unit tests for new SI units added, privatebin.js SRI updated
This commit is contained in:
parent
390f8ddc53
commit
5d119768c3
3 changed files with 22 additions and 3 deletions
|
@ -591,7 +591,7 @@ jQuery.PrivateBin = (function($) {
|
|||
};
|
||||
|
||||
/**
|
||||
* Convert Bytes to KiB/MiB/GiB
|
||||
* Convert Bytes to kB/MB/GB/TB/PB/EB/ZB/YB
|
||||
*
|
||||
* @name Helper.formatBytes
|
||||
* @function
|
||||
|
@ -604,7 +604,10 @@ jQuery.PrivateBin = (function($) {
|
|||
let result = '';
|
||||
const kilobyte = 1000;
|
||||
const decimalPoint = 2;
|
||||
const sizes = [I18n._('B'), I18n._('kB'), I18n._('MB'), I18n._('GB'), I18n._('TB'), I18n._('PB'), I18n._('EB'), I18n._('ZB'), I18n._('YB')];
|
||||
const sizes = [
|
||||
I18n._('B'), I18n._('kB'), I18n._('MB'), I18n._('GB'), I18n._('TB'),
|
||||
I18n._('PB'), I18n._('EB'), I18n._('ZB'), I18n._('YB')
|
||||
];
|
||||
const index = Math.floor(Math.log(bytes) / Math.log(kilobyte));
|
||||
|
||||
if (bytes > 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue