Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 465 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 465 Bytes

Json

A description of this package.

let json = "".toJson()
let json = data.toJson()
let json = dictionary.toJson()
let json = model.toJson()
let data = json.toData()
let string = json.toString()
let dictionary = json.toDictionary()
let model = json.toModel(Model.self)

Installation

Swift Package Manager

dependencies: [
    .package(url: "https://github.com/FullStack-Swift/Json", .upToNextMajor(from: "1.0.0"))
]