module TextTube::CoreExtensions

Public Instance Methods

blank?() click to toggle source
# File lib/ext/blank.rb, line 6
def blank?
  respond_to?(:empty?) ? 
    empty? :
    !self
end