Method: Object#present?

Defined in:
lib/flow/core_ext/blank.rb

#present?true, false

An object is present if it’s not blank.

Returns:

  • (true, false)


24
25
26
# File 'lib/flow/core_ext/blank.rb', line 24

def present?
  !blank?
end