krz/hutch

an ios client for sourcehut

clone: git clone https://gitbay.org/krz/hutch.git

v2.6.1: Hutch/Extensions/Int+ByteFormatting.swift · raw

1import Foundation
2
3extension Int {
4    /// Human-readable byte size string (e.g. "1.2 MB", "340 KB").
5    var formattedByteCount: String {
6        ByteCountFormatter.string(fromByteCount: Int64(self), countStyle: .file)
7    }
8}