-
-
Save joelmoss/167184 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
class Object | |
# nil if false, else self | |
def only_if(&block) | |
self if self.instance_eval(&block) | |
end | |
end | |
puts ''.only_if { length > 0 } || 'previously blank' | |
# => 'previously blank' | |
puts 'not blank'.only_if { length > 0 } || 'previously blank' | |
# => 'not blank' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment