Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 188 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 188 Bytes

Swift Mini tools

JWTDecoder.swift

Simple JWT token properties decoder

if let decoder = JWTDecoder(token: token) {
   var myValue = decoder.rawObject["myKey"] as! String
}