Skip to content

Instantly share code, notes, and snippets.

@pchelnikov
Created August 12, 2019 08:15
Show Gist options
  • Save pchelnikov/686f4fd177c0b3bc2341cfb1238d64f7 to your computer and use it in GitHub Desktop.
Save pchelnikov/686f4fd177c0b3bc2341cfb1238d64f7 to your computer and use it in GitHub Desktop.
Extensions for Swift Optional type
extension Optional where Wrapped == String {
func orEmpty() -> String {
return self ?? ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment