Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/api-pattern/class_helpers.rb
Instance Method Summary collapse
Instance Method Details
#blank? ⇒ Boolean
39 40 41 |
# File 'lib/api-pattern/class_helpers.rb', line 39 def blank? nil? || self == "" || self == "" end |
#present? ⇒ Boolean
35 36 37 |
# File 'lib/api-pattern/class_helpers.rb', line 35 def present? !blank? end |