IceCubesApp/Packages/Network/Sources/Network/URLData.swift

11 lines
255 B
Swift
Raw Normal View History

2023-01-08 09:22:52 +00:00
import Foundation
extension Data {
func base64UrlEncodedString() -> String {
2023-09-16 12:15:03 +00:00
base64EncodedString()
2023-01-08 09:22:52 +00:00
.replacingOccurrences(of: "+", with: "-")
.replacingOccurrences(of: "/", with: "_")
.replacingOccurrences(of: "=", with: "")
}
}