We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 671392f commit 5c4fa32Copy full SHA for 5c4fa32
Sources/FoundationEssentials/Data/Data.swift
@@ -2889,11 +2889,11 @@ extension Data {
2889
public static let endLineWithLineFeed = Base64EncodingOptions(rawValue: 1 << 5)
2890
2891
/// Use the base64url alphabet to encode the data
2892
- @available(FoundationPreview 6.2, *)
+ @available(FoundationPreview 6.3, *)
2893
public static let base64URLAlphabet = Base64EncodingOptions(rawValue: 1 << 6)
2894
2895
/// Omit the `=` padding characters in the end of the base64 encoded result
2896
2897
public static let omitPaddingCharacter = Base64EncodingOptions(rawValue: 1 << 7)
2898
}
2899
0 commit comments