DEV Community

[Comment from a deleted post]
Collapse
 
rhymes profile image
rhymes

BTW .present? is Rails only, or least defined only in ActiveSupport

Another "trick" I like is .presence which transforms:

object.present? ? object : nil

to just object.presence