class Opal::Hike::Trail

def stat(path)

parity with `Index#stat`.
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