module Savon::CoreExt::Object

Public Instance Methods

blank?() click to toggle source

Returns true if the Object is nil, false or empty. Implementation from ActiveSupport.

# File lib/savon/core_ext/object.rb, line 6
def blank?
  respond_to?(:empty?) ? empty? : !self
end