mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/ios-sdk.git
synced 2026-03-06 21:31:10 +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
|
|
}
|
|
}
|