Method: Pathname#existence
- Defined in:
- lib/pleasant_path/pathname.rb
#existence ⇒ self?
Returns the Pathname if exist?
is true, otherwise returns nil.
54 55 56 |
# File 'lib/pleasant_path/pathname.rb', line 54 def existence self if self.exist? end |