Mercurial > public > geoquiz
view GeoQuiz/Components/FormatterExtension.swift @ 19:f140bb277c96
refactor code
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sun, 23 Oct 2022 00:11:38 +0100 |
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) ?? "" } }