Sha256: 2823388810a07517070c6abe99273bb7d9d72bff5cbcc8d3f6ce1b37af6a3e57

Contents?: true

Size: 203 Bytes

Versions: 3

Compression:

Stored size: 203 Bytes

Contents

class String

  # Is this string just whitespace?
  #
  #   "abc".blank?  #=> false
  #   "   ".blank?  #=> true
  #
  #   CREDIT: ?

  def blank?
    self !~ /\S/
  end

  alias whitespace? blank?

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
facets-2.2.0 lib/core/facets/string/blank.rb
facets-2.2.1 lib/core/facets/string/blank.rb
facets-2.3.0 lib/core/facets/string/blank.rb