module Nori::CoreExt::Object

Public Instance Methods

blank?() click to toggle source
# File lib/nori/core_ext/object.rb, line 5
def blank?
  respond_to?(:empty?) ? empty? : !self
end