2021-04-02 21:19:54 +04:00

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
}
}