Class: String
Overview
class FalseClass
Instance Method Summary collapse
-
#blank? ⇒ Boolean
Strips out whitespace then tests if the string is empty.
Instance Method Details
#blank? ⇒ Boolean
Strips out whitespace then tests if the string is empty.
42 43 44 |
# File 'lib/carrierwave/core_ext/blank.rb', line 42 def blank? strip.empty? end |