Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
js /
jqplot /
plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
jqplot.byteFormatter.js
1.25
KB
-rw-r--r--
2021-02-05 18:25
Save
Rename
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * jqplot formatter for byte values * * @package phpMyAdmin */ (function ($) { 'use strict'; var formatByte = function (value, index) { var val = value; var i = index; var units = [ Messages.strB, Messages.strKiB, Messages.strMiB, Messages.strGiB, Messages.strTiB, Messages.strPiB, Messages.strEiB ]; while (val >= 1024 && i <= 6) { val /= 1024; i++; } var format = '%.1f'; if (Math.floor(val) === val) { format = '%.0f'; } return $.jqplot.sprintf( format + ' ' + units[i], val ); }; /** * The index indicates what unit the incoming data will be in. * 0 for bytes, 1 for kilobytes and so on... */ $.jqplot.byteFormatter = function (index) { var i = index || 0; return function (format, value) { var val = value; if (typeof val === 'number') { val = parseFloat(val) || 0; return formatByte(val, i); } else { return String(val); } }; }; }(jQuery));