mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
8 lines
175 B
Swift
8 lines
175 B
Swift
import Foundation
|
|
|
|
extension URL {
|
|
public static func makeFromNonEncodedString(_ string: String) -> URL? {
|
|
URL(string: string.percentEncodedExceptSpecialAndLatin)
|
|
}
|
|
}
|