//! Human-readable byte-size formatting.
const GB: i64 = 1 << 30;
const MB: i64 = 1 << 20;
const KB: i64 = 1 << 10;
/// Format a byte count as a short human string (`B`/`KB`/`MB`/`GB`). Gigabytes
/// get one decimal place, with a trailing `.0` trimmed.