module Sprockets::PathUtils

def file?(path)

Returns true path exists and is a file.

path - String file path.

Public: Like `File.file?`.
def file?(path)
  if stat = self.stat(path)
    stat.file?
  else
    false
  end
end