Files
BitTorrentSwift/BitTorrent/Utilities/URL.swift
T
2017-08-29 11:29:55 +01:00

18 lines
385 B
Swift

//
// URL.swift
// BitTorrent
//
// Created by Ben Davis on 13/08/2017.
// Copyright © 2017 Ben Davis. All rights reserved.
//
import Foundation
extension URL {
public func bySettingScheme(to scheme: String) -> URL {
var components = URLComponents(url: self, resolvingAgainstBaseURL: false)!
components.scheme = scheme
return components.url!
}
}