Flowdock
method

blank?

Importance_1
Ruby on Rails latest stable (v3.2.13) - 0 notes - Class: String
blank?() public

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

"".blank?                 # => true
"   ".blank?              # => true
" ".blank?               # => true
" something here ".blank? # => false
Show source
Register or log in to add new notes.