class Sprockets::Cache::FileStore

def safe_stat(fn)

Experimental RBS support (using type sampling data from the type_fusion project).

def safe_stat: (String fn) -> File::Stat

This signature was generated using 21 samples from 5 applications.

def safe_stat(fn)
  File.stat(fn)
rescue Errno::ENOENT
  nil
end