Skip to content

Instantly share code, notes, and snippets.

@jokester
Created May 7, 2014 09:01
Show Gist options
  • Save jokester/93b11fa1188c223f7c5e to your computer and use it in GitHub Desktop.
Save jokester/93b11fa1188c223f7c5e to your computer and use it in GitHub Desktop.
do ->
String.prototype.to_proc = (args...)->
method = @
(obj)->obj[method].apply(obj, args...)
console.log "a b c".split(/\s/).map (i)->i["toUpperCase"]()
# => [ "A", "B", "C" ]
console.log "a b c".split(/\s/).map "toUpperCase".to_proc()
# => [ "A", "B", "C" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment