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