Created
July 17, 2013 01:07
-
-
Save chsh/6016803 to your computer and use it in GitHub Desktop.
Almost like A || B, but if A is blank, pickup B.
ex.) '' || 'A' returns ''
''.present_or 'A' returns 'A'.
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 | |
def present_or(value) | |
return self if self.present? | |
value | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment