module SassC::URL

def path_to_file_url(path)

def path_to_file_url(path)
  return if path.nil?
  path = "/#{path}" unless path.start_with?('/')
  "file://#{escape(path)}"
end