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