Skip to content

Instantly share code, notes, and snippets.

@Ericdowney
Ericdowney / Optional Extensions.swift
Created August 24, 2018 20:46
Swift gist for medium article explaining optional + extensions
extension Optional where Wrapped == String {
var valueOrEmpty: String {
guard let unwrapped = self else {
return ""
}
return unwrapped
}
}