Class: NilClass
- Inherits:
-
Object
- Object
- NilClass
- Defined in:
- lib/utiles_nil.rb
Overview
Extentions for NilClass class.
Instance Method Summary collapse
-
#is_blank? ⇒ Boolean
Checks if it is blank.
-
#noe? ⇒ Boolean
Checks if it is nil or empty.
Instance Method Details
#is_blank? ⇒ Boolean
Checks if it is blank.
14 15 16 |
# File 'lib/utiles_nil.rb', line 14 def is_blank? noe? end |
#noe? ⇒ Boolean
Checks if it is nil or empty.
7 8 9 |
# File 'lib/utiles_nil.rb', line 7 def noe? true end |