(bytes: number)
| 18 | |
| 19 | /** Convert bytes to whole megabytes. */ |
| 20 | export function bytesToMb(bytes: number): number { |
| 21 | return Math.trunc(bytes / (1024 * 1024)); |
| 22 | } |
| 23 | |
| 24 | export interface SystemMeta { |
| 25 | os_release: string; |
no outgoing calls
no test coverage detected