Skip to content

Instantly share code, notes, and snippets.

@JanGorman
Created July 17, 2019 17:23
Show Gist options
  • Save JanGorman/fcf45e07908dc6c57c52997275cad550 to your computer and use it in GitHub Desktop.
Save JanGorman/fcf45e07908dc6c57c52997275cad550 to your computer and use it in GitHub Desktop.
extension URL: ExpressibleByStringLiteral {
public init(extendedGraphemeClusterLiteral value: String) {
self = URL(string: value)!
}
public init(stringLiteral value: String) {
self = URL(string: value)!
}
}
// Usage:
let foo: URL = "https://www.apple.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment