Skip to content

Instantly share code, notes, and snippets.

@vikdenic
Created June 13, 2019 20:19
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 vikdenic/3cd3beb6d714091dff68a3a61229c6de to your computer and use it in GitHub Desktop.
Save vikdenic/3cd3beb6d714091dff68a3a61229c6de to your computer and use it in GitHub Desktop.
trimmedOfLinesAndSpaces
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