├── .gitignore ├── JSONDecoderEx.podspec ├── JSONDecoderNS.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── JSONDecoderEx.swift └── Tests └── JSONDecoderTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/.gitignore -------------------------------------------------------------------------------- /JSONDecoderEx.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/JSONDecoderEx.podspec -------------------------------------------------------------------------------- /JSONDecoderNS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/JSONDecoderNS.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/README.md -------------------------------------------------------------------------------- /Sources/JSONDecoderEx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/Sources/JSONDecoderEx.swift -------------------------------------------------------------------------------- /Tests/JSONDecoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAGESSE-CN/JSONDecoderEx/HEAD/Tests/JSONDecoderTests.swift --------------------------------------------------------------------------------