mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-13 06:49:23 +00:00
7 lines
193 B
Swift
7 lines
193 B
Swift
import Foundation
|
|
|
|
func formatStarsUsdValue(_ value: Int64, rate: Double) -> String {
|
|
let formattedValue = String(format: "%0.2f", (Double(value)) * rate)
|
|
return "$\(formattedValue)"
|
|
}
|