Charyf/charyf-core

View on GitHub
lib/charyf/support/object.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Object

  def blank?
    respond_to?(:empty?) ? !!empty? : !self
  end

end