mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
7 lines
201 B
Swift
7 lines
201 B
Swift
import Foundation
|
|
|
|
func formatUsdValue(_ value: Int64, rate: Double) -> String {
|
|
let formattedValue = String(format: "%0.2f", (Double(value) / 1000000000) * rate)
|
|
return "$\(formattedValue)"
|
|
}
|