mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
9 lines
226 B
Swift
9 lines
226 B
Swift
import Foundation
|
|
|
|
extension CharacterSet {
|
|
static var urlQueryAllowedStrict: CharacterSet {
|
|
var allowed = CharacterSet.urlQueryAllowed
|
|
allowed.remove(charactersIn: "/?@&=+$")
|
|
return allowed
|
|
}
|
|
} |