Class: NilClass

Inherits:
Object show all
Defined in:
lib/croesus/core_ext/blank.rb

Overview

Add #blank? method to NilClass class.

Instance Method Summary collapse

Instance Method Details

#blank?TrueClass

Nil is always blank

nil.blank?        #=>  true

Returns:



55
56
57
# File 'lib/croesus/core_ext/blank.rb', line 55

def blank?
  true
end