method
nothing?
v5.0.0.1 -
Show latest stable
- Class:
ActiveSupport::XMLConverter
nothing?(value)private
No documentation available.
# File activesupport/lib/active_support/core_ext/hash/conversions.rb, line 235
def nothing?(value)
# blank or nil parsed values are represented by nil
value.blank? || value['nil'] == 'true'
end