Class String
In: lib/fission/core_ext/object.rb
Parent: Object

Methods

blank?  

Public Instance methods

A string is blank if it‘s empty or contains whitespaces only:

  "".blank?                 # => true
  "   ".blank?              # => true
  " something here ".blank? # => false

[Validate]