Skip to content
Snippets Groups Projects

Restore contacts from backup

Merged Dariusz Rybicki requested to merge feature/restore-contacts-from-backup into development
Files
4
import Foundation
extension Data {
public var hexString: String {
map { String(format: "%02hhx ", $0) }.joined()
public func hexString(bytesSeparator: String = " ") -> String {
map { String(format: "%02hhx\(bytesSeparator)", $0) }.joined()
}
}
Loading