Skip to content

Instantly share code, notes, and snippets.

@robertherdzik
Created April 18, 2018 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertherdzik/af077d99b9660b0979f5a30eb1b619e5 to your computer and use it in GitHub Desktop.
Save robertherdzik/af077d99b9660b0979f5a30eb1b619e5 to your computer and use it in GitHub Desktop.
extension Optional where Wrapped == String {
func valueOrEmptyString() -> String {
guard let value = self else { return "" }
return value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment