18 lines
385 B
Swift
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!
|
|
}
|
|
}
|