NilClass

class NilClass

Parent:
Object

Public Instance Methods

blank?() Show source

nil is blank:

nil.blank? # => true

@return [true]

# File activesupport/lib/active_support/core_ext/object/blank.rb, line 54
def blank?
  true
end