Created
June 13, 2019 20:19
-
-
Save vikdenic/3cd3beb6d714091dff68a3a61229c6de to your computer and use it in GitHub Desktop.
trimmedOfLinesAndSpaces
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
var trimmedOfLinesAndSpaces: String { | |
return String(self.filter { !" \n\t\r".contains($0) }) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment