Skip to content

Instantly share code, notes, and snippets.

@stevencch99
Created May 11, 2019 13:16
Show Gist options
  • Save stevencch99/e488eae83228a8e4c257baeeb4873518 to your computer and use it in GitHub Desktop.
Save stevencch99/e488eae83228a8e4c257baeeb4873518 to your computer and use it in GitHub Desktop.
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