Mercurial > public > geoquiz
view GeoQuiz/Components/FormatterExtension.swift @ 16:1011e56b7832
implement user profile
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 20 Oct 2022 13:49:42 +0200 |
parents | a793f33f05fb |
children |
line wrap: on
line source
// // Formatters.swift // GeoQuiz // // Created by Dennis Concepción Martín on 8/10/22. // import Foundation extension Formatter { static let withSeparator: NumberFormatter = { let formatter = NumberFormatter() formatter.numberStyle = .decimal return formatter }() } extension Int { var formattedWithSeparator: String { return Formatter.withSeparator.string(for: self) ?? "" } }