method

blank?

rails latest stable - Class: Pathname
blank?()
public

An Pathname is blank if it’s empty:

Pathname.new("").blank?      # => true
Pathname.new(" ").blank?     # => false
Pathname.new("test").blank?  # => false

@return [true, false]