├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .spi.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── URLCompatibilityKit │ ├── InstanceMethods.swift │ ├── TypeMethods.swift │ └── TypeProperties.swift └── Tests └── URLCompatibilityKitTests ├── AppendTests.swift └── DirectoryTests.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/.spi.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/URLCompatibilityKit/InstanceMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/Sources/URLCompatibilityKit/InstanceMethods.swift -------------------------------------------------------------------------------- /Sources/URLCompatibilityKit/TypeMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/Sources/URLCompatibilityKit/TypeMethods.swift -------------------------------------------------------------------------------- /Sources/URLCompatibilityKit/TypeProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/Sources/URLCompatibilityKit/TypeProperties.swift -------------------------------------------------------------------------------- /Tests/URLCompatibilityKitTests/AppendTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/Tests/URLCompatibilityKitTests/AppendTests.swift -------------------------------------------------------------------------------- /Tests/URLCompatibilityKitTests/DirectoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoEidinger/URLCompatibilityKit/HEAD/Tests/URLCompatibilityKitTests/DirectoryTests.swift --------------------------------------------------------------------------------