Created
August 29, 2018 22:01
-
-
Save RustyKnight/c1cc88805ce0315a2cda373f60ee1519 to your computer and use it in GitHub Desktop.
Simple "trimming" support for String
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
import Foundation | |
extension String { | |
var trimmed: String { | |
return self.trimmingCharacters(in: .whitespacesAndNewlines) | |
} | |
var isEmptyWhenTrimmed: Bool { | |
return trimmed.isEmpty | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment