├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── Package.resolved ├── Package.swift ├── QuickSwiftCheck.podspec ├── README.md └── Sources ├── It.swift └── To.swift /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/Package.swift -------------------------------------------------------------------------------- /QuickSwiftCheck.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/QuickSwiftCheck.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/README.md -------------------------------------------------------------------------------- /Sources/It.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/Sources/It.swift -------------------------------------------------------------------------------- /Sources/To.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashivskyy/quick-swift-check/HEAD/Sources/To.swift --------------------------------------------------------------------------------