mirror of
https://gh.wpcy.net/https://github.com/parcelvoy/ios-sdk.git
synced 2026-04-25 15:31:14 +08:00
8 lines
169 B
Swift
8 lines
169 B
Swift
import Foundation
|
|
|
|
extension Data {
|
|
var hexString: String {
|
|
let hexString = map { String(format: "%02.2hhx", $0) }.joined()
|
|
return hexString
|
|
}
|
|
}
|