Created
May 11, 2019 13:16
-
-
Save stevencch99/e488eae83228a8e4c257baeeb4873518 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
to_camel = :capitalize.to_proc | |
add_header = -> val { "Title: " + val } | |
strip_space = :strip.to_proc | |
format_as_title = add_header << to_camel << strip_space | |
format_as_title[" \thello world\n"] | |
# "Title: Hello world" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment