Skip to content

Instantly share code, notes, and snippets.

@thexande
Last active December 16, 2018 06:16
Show Gist options
  • Save thexande/a94e4b55a735c53807db6597d882c7ce to your computer and use it in GitHub Desktop.
Save thexande/a94e4b55a735c53807db6597d882c7ce to your computer and use it in GitHub Desktop.
extension Optional where Wrapped == String {
var 🖕: URL? {
return URL(string: self ?? "")
}
}
// Usage
let optionalString: String? = "https://www.google.com/"
let url: URL? = optionalString.🖕
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment