mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
11 lines
238 B
Swift
11 lines
238 B
Swift
|
|
public func dataSizeString(_ size: Int) -> String {
|
|
if size >= 1024 * 1024 {
|
|
return "\(size / (1024 * 1024)) MB"
|
|
} else if size >= 1024 {
|
|
return "\(size / 1024) KB"
|
|
} else {
|
|
return "\(size) B"
|
|
}
|
|
}
|