class Opal::Hike::Trail
def stat(path)
recommend to use this method for general purposes. It exists for
`Trail#stat` is equivalent to `File#stat`. It is not
def stat(path) if File.exist?(path) File.stat(path.to_s) else # nil end end
def stat(path) if File.exist?(path) File.stat(path.to_s) else # nil end end