(bytes: number)
| 26 | } |
| 27 | |
| 28 | function formatMb(bytes: number): string { |
| 29 | return `${(bytes / (1024 * 1024)).toFixed(1)}MB`; |
| 30 | } |
| 31 | |
| 32 | function detailToString(detail: unknown): string { |
| 33 | if (detail === undefined || detail === null) return ''; |
no outgoing calls
no test coverage detected