Spaces:
Running
Running
File size: 350 Bytes
156e2a6 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Utility functions for the Nacrith CPU compressor."""
def format_size(num_bytes: int) -> str:
"""Format byte count as human-readable string."""
if num_bytes < 1024:
return f"{num_bytes} B"
elif num_bytes < 1024 * 1024:
return f"{num_bytes / 1024:.1f} KB"
else:
return f"{num_bytes / (1024 * 1024):.2f} MB"
|