Created
June 24, 2017 20:52
-
-
Save r00k/834a1b5f8b5f9e8c53551b024a2b7070 to your computer and use it in GitHub Desktop.
This file contains 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
isValidUrl : String -> Bool | |
isValidUrl str = | |
List.all | |
((|>) str) | |
[ isLower, hasNoSpaces ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment