├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .resources └── Assets │ ├── icon.png │ ├── icon.svg │ ├── logo.png │ ├── logo.svg │ ├── social.png │ └── social.svg ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ └── XFormatter.xcscheme ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── XFormatter │ ├── Extensions │ └── Date+Localized.swift │ ├── XDateFormatter │ ├── XDateFormatter+Convenience.swift │ ├── XDateFormatter+Date.swift │ └── XDateFormatter.swift │ └── XFormatter │ ├── Components │ ├── Abbreviation+Threshold.swift │ ├── Abbreviation.swift │ ├── Precision.swift │ └── Sign.swift │ ├── XFormatter+Convenience.swift │ ├── XFormatter+Decimal.swift │ └── XFormatter.swift ├── Tests └── XFormatterTests │ ├── Extensions │ └── Date+Tests.swift │ ├── XDateFormatter │ ├── DateComponentsFormatter+Tests.swift │ └── DateFormatter+Tests.swift │ └── XFormatter │ ├── CurrencyFormatter+Tests.swift │ ├── DecimalFormatter+Tests.swift │ └── PercentFormatter+Tests.swift └── codecov.yml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.gitignore -------------------------------------------------------------------------------- /.resources/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.resources/Assets/icon.png -------------------------------------------------------------------------------- /.resources/Assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.resources/Assets/icon.svg -------------------------------------------------------------------------------- /.resources/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.resources/Assets/logo.png -------------------------------------------------------------------------------- /.resources/Assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.resources/Assets/logo.svg -------------------------------------------------------------------------------- /.resources/Assets/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.resources/Assets/social.png -------------------------------------------------------------------------------- /.resources/Assets/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.resources/Assets/social.svg -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/XFormatter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/XFormatter.xcscheme -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/README.md -------------------------------------------------------------------------------- /Sources/XFormatter/Extensions/Date+Localized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/Extensions/Date+Localized.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XDateFormatter/XDateFormatter+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XDateFormatter/XDateFormatter+Convenience.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XDateFormatter/XDateFormatter+Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XDateFormatter/XDateFormatter+Date.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XDateFormatter/XDateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XDateFormatter/XDateFormatter.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/Components/Abbreviation+Threshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/Components/Abbreviation+Threshold.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/Components/Abbreviation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/Components/Abbreviation.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/Components/Precision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/Components/Precision.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/Components/Sign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/Components/Sign.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/XFormatter+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/XFormatter+Convenience.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/XFormatter+Decimal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/XFormatter+Decimal.swift -------------------------------------------------------------------------------- /Sources/XFormatter/XFormatter/XFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Sources/XFormatter/XFormatter/XFormatter.swift -------------------------------------------------------------------------------- /Tests/XFormatterTests/Extensions/Date+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Tests/XFormatterTests/Extensions/Date+Tests.swift -------------------------------------------------------------------------------- /Tests/XFormatterTests/XDateFormatter/DateComponentsFormatter+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Tests/XFormatterTests/XDateFormatter/DateComponentsFormatter+Tests.swift -------------------------------------------------------------------------------- /Tests/XFormatterTests/XDateFormatter/DateFormatter+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Tests/XFormatterTests/XDateFormatter/DateFormatter+Tests.swift -------------------------------------------------------------------------------- /Tests/XFormatterTests/XFormatter/CurrencyFormatter+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Tests/XFormatterTests/XFormatter/CurrencyFormatter+Tests.swift -------------------------------------------------------------------------------- /Tests/XFormatterTests/XFormatter/DecimalFormatter+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Tests/XFormatterTests/XFormatter/DecimalFormatter+Tests.swift -------------------------------------------------------------------------------- /Tests/XFormatterTests/XFormatter/PercentFormatter+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/Tests/XFormatterTests/XFormatter/PercentFormatter+Tests.swift -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/XFormatter/HEAD/codecov.yml --------------------------------------------------------------------------------