method

blank?

Importance_1
v7.1.3.2 - Show latest stable - 0 notes - 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]

Show source
Register or log in to add new notes.