Skip to content

Instantly share code, notes, and snippets.

@mustmodify
Created November 11, 2014 18:06
Show Gist options
  • Save mustmodify/2e251d8c151028f4ac53 to your computer and use it in GitHub Desktop.
Save mustmodify/2e251d8c151028f4ac53 to your computer and use it in GitHub Desktop.
module Enumerable
def first_result
self.each do |item|
out = yield item
return out if out
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment