(bytes: number)
| 5 | * @param {number} bytes: Bytes to format |
| 6 | */ |
| 7 | export function formatBytes(bytes: number): string { |
| 8 | if (!bytes) return '0' |
| 9 | return prettyBytes(bytes) |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Current platform |
no outgoing calls
no test coverage detected