Created
August 5, 2020 18:46
-
-
Save srstanic/f8bb64785d1d62e2775a20acaf5cc6cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extension Optional where Wrapped == String { | |
| var isEmptyOrNil: Bool { | |
| return self?.isEmpty != false | |
| } | |
| var isNotEmptyNorNil: Bool { | |
| return !isEmptyOrNil | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment