(bytes)
| 1159 | |
| 1160 | // Format a file size value |
| 1161 | function formatFileSize(bytes) { |
| 1162 | if (bytes < 1024) return bytes + ' B'; |
| 1163 | if (bytes < 1024 * 1024) return (bytes / 1024).toFixed(1) + ' KB'; |
| 1164 | return (bytes / (1024 * 1024)).toFixed(1) + ' MB'; |
| 1165 | } |
| 1166 | |
| 1167 | // Initialize the application |
| 1168 | if (document.readyState === 'loading') { |
no outgoing calls
no test coverage detected