mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
361 B
Swift
19 lines
361 B
Swift
//
|
|
// NumberFormatter.swift
|
|
// CurrencyText
|
|
//
|
|
// Created by Felipe Lefèvre Marino on 12/27/18.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension NumberFormatter {
|
|
|
|
func string(from doubleValue: Double?) -> String? {
|
|
if let doubleValue = doubleValue {
|
|
return string(from: NSNumber(value: doubleValue))
|
|
}
|
|
return nil
|
|
}
|
|
}
|